Class CfnThemePropsMixin.ThemeValueProperty
The ThemeValue property specifies the configuration of a theme's properties.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnThemePropsMixin.ThemeValueProperty : CfnThemePropsMixin.IThemeValueProperty
Syntax (vb)
Public Class CfnThemePropsMixin.ThemeValueProperty Implements CfnThemePropsMixin.IThemeValueProperty
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.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins;
ThemeValueProperty themeValueProperty_;
var themeValueProperty = new ThemeValueProperty {
Children = new [] { new ThemeValuesProperty {
Key = "key",
Value = themeValueProperty_
} },
Value = "value"
};
Synopsis
Constructors
| ThemeValueProperty() | The |
Properties
| Children | A list of key-value pairs that define the theme's properties. |
| Value | The value of a theme property. |
Constructors
ThemeValueProperty()
The ThemeValue property specifies the configuration of a theme's properties.
public ThemeValueProperty()
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.Mixins.Preview.AWS.AmplifyUIBuilder.Mixins;
ThemeValueProperty themeValueProperty_;
var themeValueProperty = new ThemeValueProperty {
Children = new [] { new ThemeValuesProperty {
Key = "key",
Value = themeValueProperty_
} },
Value = "value"
};
Properties
Children
A list of key-value pairs that define the theme's properties.
public object? Children { get; set; }
Property Value
Remarks
Value
The value of a theme property.
public string? Value { get; set; }