Class CfnComponentMixinProps
Properties for CfnComponentPropsMixin.
Implements
Inherited Members
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
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
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
Remarks
Tags
Tags associated with the component.
public CfnComponentPropsMixin.ITagsItemsProperty[]? Tags { get; set; }