Interface UpdateDatasetEntriesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateDatasetEntriesRequest.Builder,UpdateDatasetEntriesRequest>,LookoutVisionRequest.Builder,SdkBuilder<UpdateDatasetEntriesRequest.Builder,UpdateDatasetEntriesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateDatasetEntriesRequest
public static interface UpdateDatasetEntriesRequest.Builder extends LookoutVisionRequest.Builder, SdkPojo, CopyableBuilder<UpdateDatasetEntriesRequest.Builder,UpdateDatasetEntriesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateDatasetEntriesRequest.Builderchanges(SdkBytes changes)The entries to add to the dataset.UpdateDatasetEntriesRequest.BuilderclientToken(String clientToken)ClientToken is an idempotency token that ensures a call toUpdateDatasetEntriescompletes only once.UpdateDatasetEntriesRequest.BuilderdatasetType(String datasetType)The type of the dataset that you want to update.UpdateDatasetEntriesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateDatasetEntriesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateDatasetEntriesRequest.BuilderprojectName(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, sdkFields
-
-
-
-
Method Detail
-
projectName
UpdateDatasetEntriesRequest.Builder projectName(String 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
UpdateDatasetEntriesRequest.Builder datasetType(String datasetType)
The type of the dataset that you want to update. Specify
trainto update the training dataset. Specifytestto update the test dataset. If you have a single dataset project, specifytrain.- Parameters:
datasetType- The type of the dataset that you want to update. Specifytrainto update the training dataset. Specifytestto 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
UpdateDatasetEntriesRequest.Builder changes(SdkBytes 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
UpdateDatasetEntriesRequest.Builder clientToken(String clientToken)
ClientToken is an idempotency token that ensures a call to
UpdateDatasetEntriescompletes 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 toUpdateDatasetEntriesby using the sameClientTokenparameter 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
ClientTokenis considered a new call toUpdateDatasetEntries. An idempotency token is active for 8 hours.- Parameters:
clientToken- ClientToken is an idempotency token that ensures a call toUpdateDatasetEntriescompletes 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 toUpdateDatasetEntriesby using the sameClientTokenparameter 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
ClientTokenis 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)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateDatasetEntriesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-