interface ThemeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder.CfnThemePropsMixin.ThemeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsamplifyuibuilder#CfnThemePropsMixin_ThemeValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.amplifyuibuilder.CfnThemePropsMixin.ThemeValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_amplifyuibuilder.CfnThemePropsMixin.ThemeValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_amplifyuibuilder » 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 { aws_amplifyuibuilder as amplifyuibuilder } from '@aws-cdk/cfn-property-mixins';
declare const themeValueProperty_: amplifyuibuilder.CfnThemePropsMixin.ThemeValueProperty;
const themeValueProperty: amplifyuibuilder.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