Interface FilledMapShapeConditionalFormatting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilledMapShapeConditionalFormatting.Builder,FilledMapShapeConditionalFormatting>,SdkBuilder<FilledMapShapeConditionalFormatting.Builder,FilledMapShapeConditionalFormatting>,SdkPojo
- Enclosing class:
- FilledMapShapeConditionalFormatting
@Mutable @NotThreadSafe public static interface FilledMapShapeConditionalFormatting.Builder extends SdkPojo, CopyableBuilder<FilledMapShapeConditionalFormatting.Builder,FilledMapShapeConditionalFormatting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FilledMapShapeConditionalFormatting.BuilderfieldId(String fieldId)The field ID of the filled map shape.default FilledMapShapeConditionalFormatting.Builderformat(Consumer<ShapeConditionalFormat.Builder> format)The conditional formatting that determines the background color of a filled map's shape.FilledMapShapeConditionalFormatting.Builderformat(ShapeConditionalFormat format)The conditional formatting that determines the background color of a filled map's shape.-
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
FilledMapShapeConditionalFormatting.Builder fieldId(String fieldId)
The field ID of the filled map shape.
- Parameters:
fieldId- The field ID of the filled map shape.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
FilledMapShapeConditionalFormatting.Builder format(ShapeConditionalFormat format)
The conditional formatting that determines the background color of a filled map's shape.
- Parameters:
format- The conditional formatting that determines the background color of a filled map's shape.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
default FilledMapShapeConditionalFormatting.Builder format(Consumer<ShapeConditionalFormat.Builder> format)
The conditional formatting that determines the background color of a filled map's shape.
This is a convenience method that creates an instance of theShapeConditionalFormat.Builderavoiding the need to create one manually viaShapeConditionalFormat.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toformat(ShapeConditionalFormat).- Parameters:
format- a consumer that will call methods onShapeConditionalFormat.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
format(ShapeConditionalFormat)
-
-