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