CfnAttributeGroupMixinProps
- class aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnAttributeGroupMixinProps(*, attributes=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnAttributeGroupPropsMixin.
- Parameters:
attributes (
Any) – A nested object in a JSON or YAML template that supports arbitrary definitions. Represents the attributes in an attribute group that describes an application and its components.description (
Optional[str]) – The description of the attribute group that the user provides.name (
Optional[str]) – The name of the attribute group.tags (
Optional[Mapping[str,str]]) – Key-value pairs you can use to associate with the attribute group.
- 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.mixins_preview.aws_servicecatalogappregistry import mixins as servicecatalogappregistry_mixins # attributes: Any cfn_attribute_group_mixin_props = servicecatalogappregistry_mixins.CfnAttributeGroupMixinProps( attributes=attributes, description="description", name="name", tags={ "tags_key": "tags" } )
Attributes
- attributes
A nested object in a JSON or YAML template that supports arbitrary definitions.
Represents the attributes in an attribute group that describes an application and its components.
- description
The description of the attribute group that the user provides.
- name
The name of the attribute group.
- tags
Key-value pairs you can use to associate with the attribute group.