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: