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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputDataConfig.BuilderdatasetGroupArn(String datasetGroupArn)The Amazon Resource Name (ARN) of the dataset group.InputDataConfig.BuildersupplementaryFeatures(Collection<SupplementaryFeature> supplementaryFeatures)An array of supplementary features.InputDataConfig.BuildersupplementaryFeatures(Consumer<SupplementaryFeature.Builder>... supplementaryFeatures)An array of supplementary features.InputDataConfig.BuildersupplementaryFeatures(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 Detail
-
datasetGroupArn
InputDataConfig.Builder datasetGroupArn(String 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
InputDataConfig.Builder supplementaryFeatures(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
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.Builderavoiding the need to create one manually viaSupplementaryFeature.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#supplementaryFeatures(List.) - 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:
#supplementaryFeatures(java.util.Collection)
-
-