Class CfnTheme.ThemeValuesProperty
The ThemeValues
property specifies key-value pair that defines a property of a theme.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTheme.ThemeValuesProperty : CfnTheme.IThemeValuesProperty
Syntax (vb)
Public Class CfnTheme.ThemeValuesProperty Implements CfnTheme.IThemeValuesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmplifyUIBuilder;
ThemeValuesProperty themeValuesProperty_;
var themeValuesProperty = new ThemeValuesProperty {
Key = "key",
Value = new ThemeValueProperty {
Children = new [] { themeValuesProperty_ },
Value = "value"
}
};
Synopsis
Constructors
ThemeValuesProperty() | The |
Properties
Key | The name of the property. |
Value | The value of the property. |
Constructors
ThemeValuesProperty()
The ThemeValues
property specifies key-value pair that defines a property of a theme.
public ThemeValuesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AmplifyUIBuilder;
ThemeValuesProperty themeValuesProperty_;
var themeValuesProperty = new ThemeValuesProperty {
Key = "key",
Value = new ThemeValueProperty {
Children = new [] { themeValuesProperty_ },
Value = "value"
}
};
Properties
Key
The name of the property.
public string? Key { get; set; }
Property Value
Remarks
Value
The value of the property.
public object? Value { get; set; }