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.*;
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTheme.ThemeValuePropertystatic final classAn 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. -
getValue
The value of a theme property. -
builder
-