Show / Hide Table of Contents

Class CfnComponentProps

Properties for defining a CfnComponent.

Inheritance
object
CfnComponentProps
Implements
ICfnComponentProps
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.GreengrassV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComponentProps : ICfnComponentProps
Syntax (vb)
Public Class CfnComponentProps Implements ICfnComponentProps
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.AWS.GreengrassV2;

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

Synopsis

Constructors

CfnComponentProps()

Properties for defining a CfnComponent.

Properties

ComponentName

The name of the component.

Tags

Tags associated with the component.

Constructors

CfnComponentProps()

Properties for defining a CfnComponent.

public CfnComponentProps()
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.AWS.GreengrassV2;

             var cfnComponentProps = new CfnComponentProps {
                 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 CfnComponent.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

ICfnComponentProps
Back to top Generated by DocFX