aws-cdk-lib.aws_amplifyuibuilder.CfnTheme.ThemeValueProperty

interface ThemeValueProperty

LanguageType name
.NETAmazon.CDK.AWS.AmplifyUIBuilder.CfnTheme.ThemeValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsamplifyuibuilder#CfnTheme_ThemeValueProperty
Javasoftware.amazon.awscdk.services.amplifyuibuilder.CfnTheme.ThemeValueProperty
Pythonaws_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 themeValuesProperty_: amplifyuibuilder.CfnTheme.ThemeValuesProperty;
const themeValueProperty: amplifyuibuilder.CfnTheme.ThemeValueProperty = {
  children: [{
    key: 'key',
    value: {
      children: [themeValuesProperty_],
      value: 'value',
    },
  }],
  value: 'value',
};

Properties

NameTypeDescription
children?IResolvable | IResolvable | ThemeValuesProperty[]A list of key-value pairs that define the theme's properties.
value?stringThe value of a theme property.

children?

Type: IResolvable | IResolvable | ThemeValuesProperty[] (optional)

A list of key-value pairs that define the theme's properties.


value?

Type: string (optional)

The value of a theme property.