Interface TableCellConditionalFormatting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableCellConditionalFormatting.Builder,TableCellConditionalFormatting>,SdkBuilder<TableCellConditionalFormatting.Builder,TableCellConditionalFormatting>,SdkPojo
- Enclosing class:
- TableCellConditionalFormatting
public static interface TableCellConditionalFormatting.Builder extends SdkPojo, CopyableBuilder<TableCellConditionalFormatting.Builder,TableCellConditionalFormatting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TableCellConditionalFormatting.BuilderfieldId(String fieldId)The field ID of the cell for conditional formatting.default TableCellConditionalFormatting.BuildertextFormat(Consumer<TextConditionalFormat.Builder> textFormat)The text format of the cell for conditional formatting.TableCellConditionalFormatting.BuildertextFormat(TextConditionalFormat textFormat)The text format of the cell for conditional formatting.-
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
-
fieldId
TableCellConditionalFormatting.Builder fieldId(String fieldId)
The field ID of the cell for conditional formatting.
- Parameters:
fieldId- The field ID of the cell for conditional formatting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textFormat
TableCellConditionalFormatting.Builder textFormat(TextConditionalFormat textFormat)
The text format of the cell for conditional formatting.
- Parameters:
textFormat- The text format of the cell for conditional formatting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textFormat
default TableCellConditionalFormatting.Builder textFormat(Consumer<TextConditionalFormat.Builder> textFormat)
The text format of the cell for conditional formatting.
This is a convenience method that creates an instance of theTextConditionalFormat.Builderavoiding the need to create one manually viaTextConditionalFormat.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totextFormat(TextConditionalFormat).- Parameters:
textFormat- a consumer that will call methods onTextConditionalFormat.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
textFormat(TextConditionalFormat)
-
-