Interface CfnThemePropsMixin.ThemeValuesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnThemePropsMixin.ThemeValuesProperty.Jsii$Proxy
- Enclosing class:
CfnThemePropsMixin
@Stability(Stable)
public static interface CfnThemePropsMixin.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.cfnpropertymixins.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 forCfnThemePropsMixin.ThemeValuesPropertystatic final classAn implementation forCfnThemePropsMixin.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
IResolvableorCfnThemePropsMixin.ThemeValueProperty- See Also:
-
builder
-