Interface Layout.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Layout.Builder,Layout>,SdkBuilder<Layout.Builder,Layout>,SdkPojo
- Enclosing class:
- Layout
public static interface Layout.Builder extends SdkPojo, CopyableBuilder<Layout.Builder,Layout>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Layout.Builderconfiguration(Consumer<LayoutConfiguration.Builder> configuration)The configuration that determines what the type of layout for a sheet.Layout.Builderconfiguration(LayoutConfiguration configuration)The configuration that determines what the type of layout for a sheet.-
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 Detail
-
configuration
Layout.Builder configuration(LayoutConfiguration configuration)
The configuration that determines what the type of layout for a sheet.
- Parameters:
configuration- The configuration that determines what the type of layout for a sheet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
default Layout.Builder configuration(Consumer<LayoutConfiguration.Builder> configuration)
The configuration that determines what the type of layout for a sheet.
This is a convenience method that creates an instance of theLayoutConfiguration.Builderavoiding the need to create one manually viaLayoutConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconfiguration(LayoutConfiguration).- Parameters:
configuration- a consumer that will call methods onLayoutConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
configuration(LayoutConfiguration)
-
-