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