@Stability(value=Stable)
public static interface CfnTheme.ThemeValueProperty
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_;
ThemeValueProperty themeValueProperty = ThemeValueProperty.builder()
.children(List.of(ThemeValuesProperty.builder()
.key("key")
.value(ThemeValueProperty.builder()
.children(List.of(themeValuesProperty_))
.value("value")
.build())
.build()))
.value("value")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnTheme.ThemeValueProperty.Builder
A builder for
CfnTheme.ThemeValueProperty |
static class |
CfnTheme.ThemeValueProperty.Jsii$Proxy
An implementation for
CfnTheme.ThemeValueProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnTheme.ThemeValueProperty.Builder |
builder() |
default Object |
getChildren()
A list of key-value pairs that define the theme's properties.
|
default String |
getValue()
The value of a theme property.
|
@Stability(value=Stable) @Nullable default Object getChildren()
@Stability(value=Stable) @Nullable default String getValue()
@Stability(value=Stable) static CfnTheme.ThemeValueProperty.Builder builder()
Copyright © 2022. All rights reserved.