interface ThemeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins.CfnThemePropsMixin.ThemeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsamplifyuibuilder/mixins#CfnThemePropsMixin_ThemeValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.amplifyuibuilder.mixins.CfnThemePropsMixin.ThemeValueProperty |
Python | aws_cdk.mixins_preview.aws_amplifyuibuilder.mixins.CfnThemePropsMixin.ThemeValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_amplifyuibuilder » mixins » CfnThemePropsMixin » ThemeValueProperty |
The ThemeValue property specifies the configuration of a theme's properties.
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 themeValueProperty_: amplifyuibuilder_mixins.CfnThemePropsMixin.ThemeValueProperty;
const themeValueProperty: amplifyuibuilder_mixins.CfnThemePropsMixin.ThemeValueProperty = {
children: [{
key: 'key',
value: themeValueProperty_,
}],
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| children? | IResolvable | (IResolvable | Theme)[] | A list of key-value pairs that define the theme's properties. |
| value? | string | The value of a theme property. |
children?
Type:
IResolvable | (IResolvable | Theme)[]
(optional)
A list of key-value pairs that define the theme's properties.
value?
Type:
string
(optional)
The value of a theme property.

.NET
Go
Java
Python
TypeScript