Interface InputDataConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<InputDataConfig.Builder,
,InputDataConfig> SdkBuilder<InputDataConfig.Builder,
,InputDataConfig> SdkPojo
- Enclosing class:
InputDataConfig
public static interface InputDataConfig.Builder
extends SdkPojo, CopyableBuilder<InputDataConfig.Builder,InputDataConfig>
-
Method Summary
Modifier and TypeMethodDescriptiondatasetGroupArn
(String datasetGroupArn) The Amazon Resource Name (ARN) of the dataset group.supplementaryFeatures
(Collection<SupplementaryFeature> supplementaryFeatures) An array of supplementary features.supplementaryFeatures
(Consumer<SupplementaryFeature.Builder>... supplementaryFeatures) An array of supplementary features.supplementaryFeatures
(SupplementaryFeature... supplementaryFeatures) An array of supplementary features.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
-
datasetGroupArn
The Amazon Resource Name (ARN) of the dataset group.
- Parameters:
datasetGroupArn
- The Amazon Resource Name (ARN) of the dataset group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supplementaryFeatures
InputDataConfig.Builder supplementaryFeatures(Collection<SupplementaryFeature> supplementaryFeatures) An array of supplementary features. The only supported feature is a holiday calendar.
- Parameters:
supplementaryFeatures
- An array of supplementary features. The only supported feature is a holiday calendar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supplementaryFeatures
An array of supplementary features. The only supported feature is a holiday calendar.
- Parameters:
supplementaryFeatures
- An array of supplementary features. The only supported feature is a holiday calendar.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supplementaryFeatures
InputDataConfig.Builder supplementaryFeatures(Consumer<SupplementaryFeature.Builder>... supplementaryFeatures) An array of supplementary features. The only supported feature is a holiday calendar.
This is a convenience method that creates an instance of theSupplementaryFeature.Builder
avoiding the need to create one manually viaSupplementaryFeature.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosupplementaryFeatures(List<SupplementaryFeature>)
.- Parameters:
supplementaryFeatures
- a consumer that will call methods onSupplementaryFeature.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-