interface ThemeValuesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnThemePropsMixin.ThemeValuesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnThemePropsMixin_ThemeValuesProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnThemePropsMixin.ThemeValuesProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnThemePropsMixin.ThemeValuesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnThemePropsMixin » ThemeValuesProperty |
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 { mixins as amplifyuibuilder_mixins } from '@aws-cdk/mixins-preview/aws-amplifyuibuilder';
declare const themeValuesProperty_: amplifyuibuilder_mixins.CfnThemePropsMixin.ThemeValuesProperty;
const themeValuesProperty: amplifyuibuilder_mixins.CfnThemePropsMixin.ThemeValuesProperty = {
key: 'key',
value: {
children: [themeValuesProperty_],
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The name of the property. |
| value? | IResolvable | Theme | The value of the property. |
key?
Type:
string
(optional)
The name of the property.
value?
Type:
IResolvable | Theme
(optional)
The value of the property.

.NET
Go
Java
Python
TypeScript