Interface CfnTheme.ThemeValuesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTheme.ThemeValuesProperty.Jsii$Proxy
Enclosing class:
CfnTheme

@Stability(Stable) public static interface CfnTheme.ThemeValuesProperty extends software.amazon.jsii.JsiiSerializable
The ThemeValues property specifies key-value pair that defines a property of a theme.

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_;
 ThemeValuesProperty themeValuesProperty = ThemeValuesProperty.builder()
         .key("key")
         .value(ThemeValueProperty.builder()
                 .children(List.of(ThemeValuesProperty.builder()
                         .key("key")
                         .value(themeValueProperty_)
                         .build()))
                 .value("value")
                 .build())
         .build();