Interface CreateDataSetExportTaskRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateDataSetExportTaskRequest.Builder,
,CreateDataSetExportTaskRequest> M2Request.Builder
,SdkBuilder<CreateDataSetExportTaskRequest.Builder,
,CreateDataSetExportTaskRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
CreateDataSetExportTaskRequest
@Mutable
@NotThreadSafe
public static interface CreateDataSetExportTaskRequest.Builder
extends M2Request.Builder, SdkPojo, CopyableBuilder<CreateDataSetExportTaskRequest.Builder,CreateDataSetExportTaskRequest>
-
Method Summary
Modifier and TypeMethodDescriptionapplicationId
(String applicationId) The unique identifier of the application for which you want to export data sets.clientToken
(String clientToken) Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set export.exportConfig
(Consumer<DataSetExportConfig.Builder> exportConfig) The data set export task configuration.exportConfig
(DataSetExportConfig exportConfig) The data set export task configuration.The identifier of a customer managed key.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.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.services.m2.model.M2Request.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
applicationId
The unique identifier of the application for which you want to export data sets.
- Parameters:
applicationId
- The unique identifier of the application for which you want to export data sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set export. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.
- Parameters:
clientToken
- Unique, case-sensitive identifier you provide to ensure the idempotency of the request to create a data set export. The service generates the clientToken when the API call is triggered. The token expires after one hour, so if you retry the API within this timeframe with the same clientToken, you will get the same response. The service also handles deleting the clientToken after it expires.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportConfig
The data set export task configuration.
- Parameters:
exportConfig
- The data set export task configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
exportConfig
default CreateDataSetExportTaskRequest.Builder exportConfig(Consumer<DataSetExportConfig.Builder> exportConfig) The data set export task configuration.
This is a convenience method that creates an instance of theDataSetExportConfig.Builder
avoiding the need to create one manually viaDataSetExportConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toexportConfig(DataSetExportConfig)
.- Parameters:
exportConfig
- a consumer that will call methods onDataSetExportConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
kmsKeyId
The identifier of a customer managed key.
- Parameters:
kmsKeyId
- The identifier of a customer managed key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateDataSetExportTaskRequest.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
CreateDataSetExportTaskRequest.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.
-