Interface DistributeDatasetEntriesRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DistributeDatasetEntriesRequest.Builder,DistributeDatasetEntriesRequest>,RekognitionRequest.Builder,SdkBuilder<DistributeDatasetEntriesRequest.Builder,DistributeDatasetEntriesRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DistributeDatasetEntriesRequest
public static interface DistributeDatasetEntriesRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<DistributeDatasetEntriesRequest.Builder,DistributeDatasetEntriesRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DistributeDatasetEntriesRequest.Builderdatasets(Collection<DistributeDataset> datasets)The ARNS for the training dataset and test dataset that you want to use.DistributeDatasetEntriesRequest.Builderdatasets(Consumer<DistributeDataset.Builder>... datasets)The ARNS for the training dataset and test dataset that you want to use.DistributeDatasetEntriesRequest.Builderdatasets(DistributeDataset... datasets)The ARNS for the training dataset and test dataset that you want to use.DistributeDatasetEntriesRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DistributeDatasetEntriesRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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.rekognition.model.RekognitionRequest.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
-
datasets
DistributeDatasetEntriesRequest.Builder datasets(Collection<DistributeDataset> datasets)
The ARNS for the training dataset and test dataset that you want to use. The datasets must belong to the same project. The test dataset must be empty.
- Parameters:
datasets- The ARNS for the training dataset and test dataset that you want to use. The datasets must belong to the same project. The test dataset must be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasets
DistributeDatasetEntriesRequest.Builder datasets(DistributeDataset... datasets)
The ARNS for the training dataset and test dataset that you want to use. The datasets must belong to the same project. The test dataset must be empty.
- Parameters:
datasets- The ARNS for the training dataset and test dataset that you want to use. The datasets must belong to the same project. The test dataset must be empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasets
DistributeDatasetEntriesRequest.Builder datasets(Consumer<DistributeDataset.Builder>... datasets)
The ARNS for the training dataset and test dataset that you want to use. The datasets must belong to the same project. The test dataset must be empty.
This is a convenience method that creates an instance of theDistributeDataset.Builderavoiding the need to create one manually viaDistributeDataset.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#datasets(List.) - Parameters:
datasets- a consumer that will call methods onDistributeDataset.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#datasets(java.util.Collection)
-
overrideConfiguration
DistributeDatasetEntriesRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DistributeDatasetEntriesRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-