Interface CreateDataIntegrationRequest.Builder
- All Superinterfaces:
AppIntegrationsRequest.Builder
,AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateDataIntegrationRequest.Builder,
,CreateDataIntegrationRequest> SdkBuilder<CreateDataIntegrationRequest.Builder,
,CreateDataIntegrationRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateDataIntegrationRequest
-
Method Summary
Modifier and TypeMethodDescriptionclientToken
(String clientToken) A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.description
(String description) A description of the DataIntegration.fileConfiguration
(Consumer<FileConfiguration.Builder> fileConfiguration) The configuration for what files should be pulled from the source.fileConfiguration
(FileConfiguration fileConfiguration) The configuration for what files should be pulled from the source.The KMS key for the DataIntegration.The name of the DataIntegration.objectConfiguration
(Map<String, ? extends Map<String, ? extends Collection<String>>> objectConfiguration) The configuration for what data should be pulled from the source.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.scheduleConfig
(Consumer<ScheduleConfiguration.Builder> scheduleConfig) The name of the data and how often it should be pulled from the source.scheduleConfig
(ScheduleConfiguration scheduleConfig) The name of the data and how often it should be pulled from the source.The URI of the data source.The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.awssdk.services.appintegrations.model.AppIntegrationsRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
name
The name of the DataIntegration.
- Parameters:
name
- The name of the DataIntegration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
A description of the DataIntegration.
- Parameters:
description
- A description of the DataIntegration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kmsKey
The KMS key for the DataIntegration.
- Parameters:
kmsKey
- The KMS key for the DataIntegration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceURI
The URI of the data source.
- Parameters:
sourceURI
- The URI of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleConfig
The name of the data and how often it should be pulled from the source.
- Parameters:
scheduleConfig
- The name of the data and how often it should be pulled from the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleConfig
default CreateDataIntegrationRequest.Builder scheduleConfig(Consumer<ScheduleConfiguration.Builder> scheduleConfig) The name of the data and how often it should be pulled from the source.
This is a convenience method that creates an instance of theScheduleConfiguration.Builder
avoiding the need to create one manually viaScheduleConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toscheduleConfig(ScheduleConfiguration)
.- Parameters:
scheduleConfig
- a consumer that will call methods onScheduleConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
tags
The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
- Parameters:
tags
- The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
- Parameters:
clientToken
- A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileConfiguration
The configuration for what files should be pulled from the source.
- Parameters:
fileConfiguration
- The configuration for what files should be pulled from the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileConfiguration
default CreateDataIntegrationRequest.Builder fileConfiguration(Consumer<FileConfiguration.Builder> fileConfiguration) The configuration for what files should be pulled from the source.
This is a convenience method that creates an instance of theFileConfiguration.Builder
avoiding the need to create one manually viaFileConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofileConfiguration(FileConfiguration)
.- Parameters:
fileConfiguration
- a consumer that will call methods onFileConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
objectConfiguration
CreateDataIntegrationRequest.Builder objectConfiguration(Map<String, ? extends Map<String, ? extends Collection<String>>> objectConfiguration) The configuration for what data should be pulled from the source.
- Parameters:
objectConfiguration
- The configuration for what data should be pulled from the source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateDataIntegrationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
CreateDataIntegrationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-