interface ThemeValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AmplifyUIBuilder.CfnTheme.ThemeValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnTheme_ThemeValueProperty |
Java | software.amazon.awscdk.services.amplifyuibuilder.CfnTheme.ThemeValueProperty |
Python | aws_cdk.aws_amplifyuibuilder.CfnTheme.ThemeValueProperty |
TypeScript | aws-cdk-lib » aws_amplifyuibuilder » CfnTheme » 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-lib';
declare const themeValueProperty_: amplifyuibuilder.CfnTheme.ThemeValueProperty;
const themeValueProperty: amplifyuibuilder.CfnTheme.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