Interface ApplicationTheme.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationTheme.Builder,ApplicationTheme>,SdkBuilder<ApplicationTheme.Builder,ApplicationTheme>,SdkPojo
- Enclosing class:
- ApplicationTheme
@Mutable @NotThreadSafe public static interface ApplicationTheme.Builder extends SdkPojo, CopyableBuilder<ApplicationTheme.Builder,ApplicationTheme>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ApplicationTheme.BuilderbrandColorPalette(Consumer<BrandColorPalette.Builder> brandColorPalette)The color palette.ApplicationTheme.BuilderbrandColorPalette(BrandColorPalette brandColorPalette)The color palette.default ApplicationTheme.BuilderbrandElementStyle(Consumer<BrandElementStyle.Builder> brandElementStyle)The element style.ApplicationTheme.BuilderbrandElementStyle(BrandElementStyle brandElementStyle)The element 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
-
brandColorPalette
ApplicationTheme.Builder brandColorPalette(BrandColorPalette brandColorPalette)
The color palette.
- Parameters:
brandColorPalette- The color palette.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
brandColorPalette
default ApplicationTheme.Builder brandColorPalette(Consumer<BrandColorPalette.Builder> brandColorPalette)
The color palette.
This is a convenience method that creates an instance of theBrandColorPalette.Builderavoiding the need to create one manually viaBrandColorPalette.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobrandColorPalette(BrandColorPalette).- Parameters:
brandColorPalette- a consumer that will call methods onBrandColorPalette.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
brandColorPalette(BrandColorPalette)
-
brandElementStyle
ApplicationTheme.Builder brandElementStyle(BrandElementStyle brandElementStyle)
The element style.
- Parameters:
brandElementStyle- The element style.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
brandElementStyle
default ApplicationTheme.Builder brandElementStyle(Consumer<BrandElementStyle.Builder> brandElementStyle)
The element style.
This is a convenience method that creates an instance of theBrandElementStyle.Builderavoiding the need to create one manually viaBrandElementStyle.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobrandElementStyle(BrandElementStyle).- Parameters:
brandElementStyle- a consumer that will call methods onBrandElementStyle.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
brandElementStyle(BrandElementStyle)
-
-