Interface TableConditionalFormattingOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableConditionalFormattingOption.Builder,TableConditionalFormattingOption>,SdkBuilder<TableConditionalFormattingOption.Builder,TableConditionalFormattingOption>,SdkPojo
- Enclosing class:
- TableConditionalFormattingOption
@Mutable @NotThreadSafe public static interface TableConditionalFormattingOption.Builder extends SdkPojo, CopyableBuilder<TableConditionalFormattingOption.Builder,TableConditionalFormattingOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TableConditionalFormattingOption.Buildercell(Consumer<TableCellConditionalFormatting.Builder> cell)The cell conditional formatting option for a table.TableConditionalFormattingOption.Buildercell(TableCellConditionalFormatting cell)The cell conditional formatting option for a table.default TableConditionalFormattingOption.Builderrow(Consumer<TableRowConditionalFormatting.Builder> row)The row conditional formatting option for a table.TableConditionalFormattingOption.Builderrow(TableRowConditionalFormatting row)The row conditional formatting option for a table.-
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
-
cell
TableConditionalFormattingOption.Builder cell(TableCellConditionalFormatting cell)
The cell conditional formatting option for a table.
- Parameters:
cell- The cell conditional formatting option for a table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cell
default TableConditionalFormattingOption.Builder cell(Consumer<TableCellConditionalFormatting.Builder> cell)
The cell conditional formatting option for a table.
This is a convenience method that creates an instance of theTableCellConditionalFormatting.Builderavoiding the need to create one manually viaTableCellConditionalFormatting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocell(TableCellConditionalFormatting).- Parameters:
cell- a consumer that will call methods onTableCellConditionalFormatting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
cell(TableCellConditionalFormatting)
-
row
TableConditionalFormattingOption.Builder row(TableRowConditionalFormatting row)
The row conditional formatting option for a table.
- Parameters:
row- The row conditional formatting option for a table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
row
default TableConditionalFormattingOption.Builder row(Consumer<TableRowConditionalFormatting.Builder> row)
The row conditional formatting option for a table.
This is a convenience method that creates an instance of theTableRowConditionalFormatting.Builderavoiding the need to create one manually viaTableRowConditionalFormatting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torow(TableRowConditionalFormatting).- Parameters:
row- a consumer that will call methods onTableRowConditionalFormatting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
row(TableRowConditionalFormatting)
-
-