CfnComponentProps
- class aws_cdk.aws_greengrassv2.CfnComponentProps(*, component_name=None, tags=None)
Bases:
objectProperties for defining a
CfnComponent.- Parameters:
component_name (
Optional[str]) – The name of the component.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – Tags associated with the component.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_greengrassv2 as greengrassv2 cfn_component_props = greengrassv2.CfnComponentProps( component_name="componentName", tags=[greengrassv2.CfnComponent.TagsItemsProperty( key="key", value="value" )] )
Attributes
- component_name
The name of the component.
- tags
Tags associated with the component.