Interface CfnTheme.IThemeValuesProperty
The ThemeValues property specifies key-value pair that defines a property of a theme.
Namespace: Amazon.CDK.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.AWS.AmplifyUIBuilder.dll
Syntax (csharp)
public interface IThemeValuesProperty
Syntax (vb)
Public Interface 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;
ThemeValueProperty themeValueProperty_;
var themeValuesProperty = new ThemeValuesProperty {
Key = "key",
Value = new ThemeValueProperty {
Children = new [] { new ThemeValuesProperty {
Key = "key",
Value = themeValueProperty_
} },
Value = "value"
}
};
Synopsis
Properties
| Key | The name of the property. |
| Value | The value of the property. |
Properties
Key
The name of the property.
virtual string Key { get; }
Property Value
System.String
Remarks
Value
The value of the property.
virtual object Value { get; }
Property Value
System.Object