Interface UpdateDatasetEntriesRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateDatasetEntriesRequest.Builder,
,UpdateDatasetEntriesRequest> LookoutVisionRequest.Builder
,SdkBuilder<UpdateDatasetEntriesRequest.Builder,
,UpdateDatasetEntriesRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateDatasetEntriesRequest
-
Method Summary
Modifier and TypeMethodDescriptionThe entries to add to the dataset.clientToken
(String clientToken) ClientToken is an idempotency token that ensures a call toUpdateDatasetEntries
completes only once.datasetType
(String datasetType) The type of the dataset that you want to update.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.projectName
(String projectName) The name of the project that contains the dataset that you want to update.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.lookoutvision.model.LookoutVisionRequest.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
-
projectName
The name of the project that contains the dataset that you want to update.
- Parameters:
projectName
- The name of the project that contains the dataset that you want to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetType
The type of the dataset that you want to update. Specify
train
to update the training dataset. Specifytest
to update the test dataset. If you have a single dataset project, specifytrain
.- Parameters:
datasetType
- The type of the dataset that you want to update. Specifytrain
to update the training dataset. Specifytest
to update the test dataset. If you have a single dataset project, specifytrain
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
changes
The entries to add to the dataset.
- Parameters:
changes
- The entries to add to the dataset.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientToken
ClientToken is an idempotency token that ensures a call to
UpdateDatasetEntries
completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response fromUpdateDatasetEntries
. In this case, safely retry your call toUpdateDatasetEntries
by using the sameClientToken
parameter value.If you don't supply a value for
ClientToken
, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple updates with the same dataset entries. You'll need to provide your own value for other use cases.An error occurs if the other input parameters are not the same as in the first request. Using a different value for
ClientToken
is considered a new call toUpdateDatasetEntries
. An idempotency token is active for 8 hours.- Parameters:
clientToken
- ClientToken is an idempotency token that ensures a call toUpdateDatasetEntries
completes only once. You choose the value to pass. For example, An issue might prevent you from getting a response fromUpdateDatasetEntries
. In this case, safely retry your call toUpdateDatasetEntries
by using the sameClientToken
parameter value.If you don't supply a value for
ClientToken
, the AWS SDK you are using inserts a value for you. This prevents retries after a network error from making multiple updates with the same dataset entries. You'll need to provide your own value for other use cases.An error occurs if the other input parameters are not the same as in the first request. Using a different value for
ClientToken
is considered a new call toUpdateDatasetEntries
. An idempotency token is active for 8 hours.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateDatasetEntriesRequest.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
UpdateDatasetEntriesRequest.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.
-