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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTheme.ThemeValuesProperty
static final class
An implementation forCfnTheme.ThemeValuesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the property. -
getValue
The value of the property. -
builder
-