@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.057Z") @Stability(value=Stable) public interface CfnThemeProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.amplifyuibuilder.*;
ThemeValuesProperty themeValuesProperty_;
CfnThemeProps cfnThemeProps = CfnThemeProps.builder()
.name("name")
.values(List.of(ThemeValuesProperty.builder()
.key("key")
.value(ThemeValueProperty.builder()
.children(List.of(themeValuesProperty_))
.value("value")
.build())
.build()))
// the properties below are optional
.overrides(List.of(ThemeValuesProperty.builder()
.key("key")
.value(ThemeValueProperty.builder()
.children(List.of(themeValuesProperty_))
.value("value")
.build())
.build()))
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnThemeProps.Builder
A builder for
CfnThemeProps |
static class |
CfnThemeProps.Jsii$Proxy
An implementation for
CfnThemeProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnThemeProps.Builder |
builder() |
String |
getName()
The name of the theme.
|
default Object |
getOverrides()
Describes the properties that can be overriden to customize a theme.
|
default Map<String,String> |
getTags()
One or more key-value pairs to use when tagging the theme.
|
Object |
getValues()
A list of key-value pairs that defines the properties of the theme.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getValues()
@Stability(value=Stable) @Nullable default Object getOverrides()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnThemeProps.Builder builder()
CfnThemeProps.Builder of CfnThemePropsCopyright © 2022. All rights reserved.