interface CfnComponentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.GreengrassV2.CfnComponentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsgreengrassv2#CfnComponentProps |
Java | software.amazon.awscdk.services.greengrassv2.CfnComponentProps |
Python | aws_cdk.aws_greengrassv2.CfnComponentProps |
TypeScript | aws-cdk-lib » aws_greengrassv2 » CfnComponentProps |
Properties for defining a CfnComponent.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_greengrassv2 as greengrassv2 } from 'aws-cdk-lib';
const cfnComponentProps: greengrassv2.CfnComponentProps = {
componentName: 'componentName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The name of the component. |
| tags? | Tags[] | Tags associated with the component. |
componentName?
Type:
string
(optional)
The name of the component.
tags?
Type:
Tags[]
(optional)
Tags associated with the component.

.NET
Go
Java
Python
TypeScript