Interface NavbarStyle.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NavbarStyle.Builder,NavbarStyle>,SdkBuilder<NavbarStyle.Builder,NavbarStyle>,SdkPojo
- Enclosing class:
- NavbarStyle
@Mutable @NotThreadSafe public static interface NavbarStyle.Builder extends SdkPojo, CopyableBuilder<NavbarStyle.Builder,NavbarStyle>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default NavbarStyle.BuildercontextualNavbar(Consumer<Palette.Builder> contextualNavbar)The contextual navigation bar style.NavbarStyle.BuildercontextualNavbar(Palette contextualNavbar)The contextual navigation bar style.default NavbarStyle.BuilderglobalNavbar(Consumer<Palette.Builder> globalNavbar)The global navigation bar style.NavbarStyle.BuilderglobalNavbar(Palette globalNavbar)The global navigation bar style.-
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
-
globalNavbar
NavbarStyle.Builder globalNavbar(Palette globalNavbar)
The global navigation bar style.
- Parameters:
globalNavbar- The global navigation bar style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
globalNavbar
default NavbarStyle.Builder globalNavbar(Consumer<Palette.Builder> globalNavbar)
The global navigation bar style.
This is a convenience method that creates an instance of thePalette.Builderavoiding the need to create one manually viaPalette.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toglobalNavbar(Palette).- Parameters:
globalNavbar- a consumer that will call methods onPalette.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
globalNavbar(Palette)
-
contextualNavbar
NavbarStyle.Builder contextualNavbar(Palette contextualNavbar)
The contextual navigation bar style.
- Parameters:
contextualNavbar- The contextual navigation bar style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contextualNavbar
default NavbarStyle.Builder contextualNavbar(Consumer<Palette.Builder> contextualNavbar)
The contextual navigation bar style.
This is a convenience method that creates an instance of thePalette.Builderavoiding the need to create one manually viaPalette.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontextualNavbar(Palette).- Parameters:
contextualNavbar- a consumer that will call methods onPalette.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
contextualNavbar(Palette)
-
-