Interface SheetControlLayoutConfiguration.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SheetControlLayoutConfiguration.Builder,
,SheetControlLayoutConfiguration> SdkBuilder<SheetControlLayoutConfiguration.Builder,
,SheetControlLayoutConfiguration> SdkPojo
- Enclosing class:
SheetControlLayoutConfiguration
@Mutable
@NotThreadSafe
public static interface SheetControlLayoutConfiguration.Builder
extends SdkPojo, CopyableBuilder<SheetControlLayoutConfiguration.Builder,SheetControlLayoutConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptiongridLayout
(Consumer<GridLayoutConfiguration.Builder> gridLayout) The configuration that determines the elements and canvas size options of sheet control.gridLayout
(GridLayoutConfiguration gridLayout) The configuration that determines the elements and canvas size options of sheet control.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 Details
-
gridLayout
The configuration that determines the elements and canvas size options of sheet control.
- Parameters:
gridLayout
- The configuration that determines the elements and canvas size options of sheet control.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
gridLayout
default SheetControlLayoutConfiguration.Builder gridLayout(Consumer<GridLayoutConfiguration.Builder> gridLayout) The configuration that determines the elements and canvas size options of sheet control.
This is a convenience method that creates an instance of theGridLayoutConfiguration.Builder
avoiding the need to create one manually viaGridLayoutConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togridLayout(GridLayoutConfiguration)
.- Parameters:
gridLayout
- a consumer that will call methods onGridLayoutConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-