Class CfnComponentProps
Properties for defining a CfnComponent.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.GreengrassV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnComponentProps : ICfnComponentProps
Syntax (vb)
Public Class CfnComponentProps Implements ICfnComponentProps
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.AWS.GreengrassV2;
var cfnComponentProps = new CfnComponentProps {
ComponentName = "componentName",
Tags = new [] { new TagsItemsProperty {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnComponentProps() | Properties for defining a |
Properties
| ComponentName | The name of the component. |
| Tags | Tags associated with the component. |
Constructors
CfnComponentProps()
Properties for defining a CfnComponent.
public CfnComponentProps()
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.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
Remarks
Tags
Tags associated with the component.
public CfnComponent.ITagsItemsProperty[]? Tags { get; set; }