Show / Hide Table of Contents

Class CfnComponentPropsMixin.ComponentVariantProperty

The ComponentVariant property specifies the style configuration of a unique variation of a main component.

Inheritance
object
CfnComponentPropsMixin.ComponentVariantProperty
Implements
CfnComponentPropsMixin.IComponentVariantProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AmplifyUIBuilder
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnComponentPropsMixin.ComponentVariantProperty : CfnComponentPropsMixin.IComponentVariantProperty
Syntax (vb)
Public Class CfnComponentPropsMixin.ComponentVariantProperty Implements CfnComponentPropsMixin.IComponentVariantProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentvariant.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.CfnPropertyMixins.AWS.AmplifyUIBuilder;

             var overrides;

             var componentVariantProperty = new ComponentVariantProperty {
                 Overrides = overrides,
                 VariantValues = new Dictionary<string, string> {
                     { "variantValuesKey", "variantValues" }
                 }
             };

Synopsis

Constructors

ComponentVariantProperty()

The ComponentVariant property specifies the style configuration of a unique variation of a main component.

Properties

Overrides

The properties of the component variant that can be overriden when customizing an instance of the component.

VariantValues

The combination of variants that comprise this variant.

Constructors

ComponentVariantProperty()

The ComponentVariant property specifies the style configuration of a unique variation of a main component.

public ComponentVariantProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentvariant.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.CfnPropertyMixins.AWS.AmplifyUIBuilder;

             var overrides;

             var componentVariantProperty = new ComponentVariantProperty {
                 Overrides = overrides,
                 VariantValues = new Dictionary<string, string> {
                     { "variantValuesKey", "variantValues" }
                 }
             };

Properties

Overrides

The properties of the component variant that can be overriden when customizing an instance of the component.

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

object

Remarks

You can't specify tags as a valid property for overrides .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentvariant.html#cfn-amplifyuibuilder-component-componentvariant-overrides

VariantValues

The combination of variants that comprise this variant.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplifyuibuilder-component-componentvariant.html#cfn-amplifyuibuilder-component-componentvariant-variantvalues

Type union: either Dictionary<string, string> or IResolvable

Implements

CfnComponentPropsMixin.IComponentVariantProperty
Back to top Generated by DocFX