Interface CategoricalDimensionField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoricalDimensionField.Builder,CategoricalDimensionField>,SdkBuilder<CategoricalDimensionField.Builder,CategoricalDimensionField>,SdkPojo
- Enclosing class:
- CategoricalDimensionField
@Mutable @NotThreadSafe public static interface CategoricalDimensionField.Builder extends SdkPojo, CopyableBuilder<CategoricalDimensionField.Builder,CategoricalDimensionField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CategoricalDimensionField.Buildercolumn(Consumer<ColumnIdentifier.Builder> column)The column that is used in theCategoricalDimensionField.CategoricalDimensionField.Buildercolumn(ColumnIdentifier column)The column that is used in theCategoricalDimensionField.CategoricalDimensionField.BuilderfieldId(String fieldId)The custom field ID.default CategoricalDimensionField.BuilderformatConfiguration(Consumer<StringFormatConfiguration.Builder> formatConfiguration)The format configuration of the field.CategoricalDimensionField.BuilderformatConfiguration(StringFormatConfiguration formatConfiguration)The format configuration of the field.CategoricalDimensionField.BuilderhierarchyId(String hierarchyId)The custom hierarchy ID.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
fieldId
CategoricalDimensionField.Builder fieldId(String fieldId)
The custom field ID.
- Parameters:
fieldId- The custom field ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
CategoricalDimensionField.Builder column(ColumnIdentifier column)
The column that is used in the
CategoricalDimensionField.- Parameters:
column- The column that is used in theCategoricalDimensionField.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
column
default CategoricalDimensionField.Builder column(Consumer<ColumnIdentifier.Builder> column)
The column that is used in the
This is a convenience method that creates an instance of theCategoricalDimensionField.ColumnIdentifier.Builderavoiding the need to create one manually viaColumnIdentifier.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocolumn(ColumnIdentifier).- Parameters:
column- a consumer that will call methods onColumnIdentifier.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
column(ColumnIdentifier)
-
hierarchyId
CategoricalDimensionField.Builder hierarchyId(String hierarchyId)
The custom hierarchy ID.
- Parameters:
hierarchyId- The custom hierarchy ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
CategoricalDimensionField.Builder formatConfiguration(StringFormatConfiguration formatConfiguration)
The format configuration of the field.
- Parameters:
formatConfiguration- The format configuration of the field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfiguration
default CategoricalDimensionField.Builder formatConfiguration(Consumer<StringFormatConfiguration.Builder> formatConfiguration)
The format configuration of the field.
This is a convenience method that creates an instance of theStringFormatConfiguration.Builderavoiding the need to create one manually viaStringFormatConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformatConfiguration(StringFormatConfiguration).- Parameters:
formatConfiguration- a consumer that will call methods onStringFormatConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
formatConfiguration(StringFormatConfiguration)
-
-