Show / Hide Table of Contents

Class CfnComponentMixinProps

Properties for CfnComponentPropsMixin.

Inheritance
object
CfnComponentMixinProps
Implements
ICfnComponentMixinProps
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.GreengrassV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnComponentMixinProps : ICfnComponentMixinProps
Syntax (vb)
Public Class CfnComponentMixinProps Implements ICfnComponentMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrassv2-component.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.GreengrassV2;

             var cfnComponentMixinProps = new CfnComponentMixinProps {
                 ComponentName = "componentName",
                 Tags = new [] { new TagsItemsProperty {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnComponentMixinProps()

Properties for CfnComponentPropsMixin.

Properties

ComponentName

The name of the component.

Tags

Tags associated with the component.

Constructors

CfnComponentMixinProps()

Properties for CfnComponentPropsMixin.

public CfnComponentMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrassv2-component.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.GreengrassV2;

             var cfnComponentMixinProps = new CfnComponentMixinProps {
                 ComponentName = "componentName",
                 Tags = new [] { new TagsItemsProperty {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ComponentName

The name of the component.

public string? ComponentName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrassv2-component.html#cfn-greengrassv2-component-componentname

Tags

Tags associated with the component.

public CfnComponentPropsMixin.ITagsItemsProperty[]? Tags { get; set; }
Property Value

ITagsItemsProperty[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrassv2-component.html#cfn-greengrassv2-component-tags

Implements

ICfnComponentMixinProps
Back to top Generated by DocFX