Show / Hide Table of Contents

Class CfnTheme.ThemeValuesProperty

The ThemeValues property specifies key-value pair that defines a property of a theme.

Inheritance
object
CfnTheme.ThemeValuesProperty
Implements
CfnTheme.IThemeValuesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalues.html

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 ThemeValues property specifies key-value pair that defines a property of a theme.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalues.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalues.html#cfn-amplifyuibuilder-theme-themevalues-key

Value

The value of the property.

public object? Value { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-theme-themevalues.html#cfn-amplifyuibuilder-theme-themevalues-value

Implements

CfnTheme.IThemeValuesProperty
Back to top Generated by DocFX