Interface CfnTheme.ThemeValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTheme.ThemeValueProperty.Jsii$Proxy
- Enclosing class:
CfnTheme
@Stability(Stable)
public static interface CfnTheme.ThemeValueProperty
extends software.amazon.jsii.JsiiSerializable
The
ThemeValue
property specifies the configuration of a theme's properties.
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.*; ThemeValueProperty themeValueProperty_; ThemeValueProperty themeValueProperty = ThemeValueProperty.builder() .children(List.of(ThemeValuesProperty.builder() .key("key") .value(themeValueProperty_) .build())) .value("value") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTheme.ThemeValueProperty
static final class
An implementation forCfnTheme.ThemeValueProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChildren
A list of key-value pairs that define the theme's properties.- See Also:
-
getValue
The value of a theme property.- See Also:
-
builder
-