Interface TableRowConditionalFormatting.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TableRowConditionalFormatting.Builder,
,TableRowConditionalFormatting> SdkBuilder<TableRowConditionalFormatting.Builder,
,TableRowConditionalFormatting> SdkPojo
- Enclosing class:
TableRowConditionalFormatting
public static interface TableRowConditionalFormatting.Builder
extends SdkPojo, CopyableBuilder<TableRowConditionalFormatting.Builder,TableRowConditionalFormatting>
-
Method Summary
Modifier and TypeMethodDescriptionbackgroundColor
(Consumer<ConditionalFormattingColor.Builder> backgroundColor) The conditional formatting color (solid, gradient) of the background for a table row.backgroundColor
(ConditionalFormattingColor backgroundColor) The conditional formatting color (solid, gradient) of the background for a table row.textColor
(Consumer<ConditionalFormattingColor.Builder> textColor) The conditional formatting color (solid, gradient) of the text for a table row.textColor
(ConditionalFormattingColor textColor) The conditional formatting color (solid, gradient) of the text for a table row.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 Details
-
backgroundColor
The conditional formatting color (solid, gradient) of the background for a table row.
- Parameters:
backgroundColor
- The conditional formatting color (solid, gradient) of the background for a table row.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
backgroundColor
default TableRowConditionalFormatting.Builder backgroundColor(Consumer<ConditionalFormattingColor.Builder> backgroundColor) The conditional formatting color (solid, gradient) of the background for a table row.
This is a convenience method that creates an instance of theConditionalFormattingColor.Builder
avoiding the need to create one manually viaConditionalFormattingColor.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobackgroundColor(ConditionalFormattingColor)
.- Parameters:
backgroundColor
- a consumer that will call methods onConditionalFormattingColor.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
textColor
The conditional formatting color (solid, gradient) of the text for a table row.
- Parameters:
textColor
- The conditional formatting color (solid, gradient) of the text for a table row.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textColor
default TableRowConditionalFormatting.Builder textColor(Consumer<ConditionalFormattingColor.Builder> textColor) The conditional formatting color (solid, gradient) of the text for a table row.
This is a convenience method that creates an instance of theConditionalFormattingColor.Builder
avoiding the need to create one manually viaConditionalFormattingColor.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totextColor(ConditionalFormattingColor)
.- Parameters:
textColor
- a consumer that will call methods onConditionalFormattingColor.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-