CfnComponentMixinProps
- class aws_cdk.cfn_property_mixins.aws_greengrassv2.CfnComponentMixinProps(*, component_name=None, tags=None)
Bases:
objectProperties for CfnComponentPropsMixin.
- 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.cfn_property_mixins import aws_greengrassv2 as greengrassv2 cfn_component_mixin_props = greengrassv2.CfnComponentMixinProps( component_name="componentName", tags=[greengrassv2.CfnComponentPropsMixin.TagsItemsProperty( key="key", value="value" )] )
Attributes
- component_name
The name of the component.
- tags
Tags associated with the component.