Interface TileLayoutStyle.Builder
- All Superinterfaces:
 Buildable,CopyableBuilder<TileLayoutStyle.Builder,,TileLayoutStyle> SdkBuilder<TileLayoutStyle.Builder,,TileLayoutStyle> SdkPojo
- Enclosing class:
 TileLayoutStyle
@Mutable
@NotThreadSafe
public static interface TileLayoutStyle.Builder
extends SdkPojo, CopyableBuilder<TileLayoutStyle.Builder,TileLayoutStyle> 
- 
Method Summary
Modifier and TypeMethodDescriptiondefault TileLayoutStyle.Buildergutter(Consumer<GutterStyle.Builder> gutter) The gutter settings that apply between tiles.gutter(GutterStyle gutter) The gutter settings that apply between tiles.default TileLayoutStyle.Buildermargin(Consumer<MarginStyle.Builder> margin) The margin settings that apply around the outside edge of sheets.margin(MarginStyle margin) The margin settings that apply around the outside edge of sheets.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
gutter
The gutter settings that apply between tiles.
- Parameters:
 gutter- The gutter settings that apply between tiles.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
gutter
The gutter settings that apply between tiles.
This is a convenience method that creates an instance of theGutterStyle.Builderavoiding the need to create one manually viaGutterStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed togutter(GutterStyle).- Parameters:
 gutter- a consumer that will call methods onGutterStyle.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
margin
The margin settings that apply around the outside edge of sheets.
- Parameters:
 margin- The margin settings that apply around the outside edge of sheets.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
margin
The margin settings that apply around the outside edge of sheets.
This is a convenience method that creates an instance of theMarginStyle.Builderavoiding the need to create one manually viaMarginStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomargin(MarginStyle).- Parameters:
 margin- a consumer that will call methods onMarginStyle.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 
 -