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.*;
ThemeValuesProperty themeValuesProperty_;
ThemeValuesProperty themeValuesProperty = ThemeValuesProperty.builder()
.key("key")
.value(ThemeValueProperty.builder()
.children(List.of(themeValuesProperty_))
.value("value")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTheme.ThemeValuesPropertystatic final classAn implementation forCfnTheme.ThemeValuesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the property.- See Also:
-
getValue
The value of the property.Returns union: either
IResolvableorCfnTheme.ThemeValueProperty- See Also:
-
builder
-