CfnApplicationMixinProps
- class aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnApplicationMixinProps(*, description=None, name=None, tags=None)
Bases:
objectProperties for CfnApplicationPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the application.name (
Optional[str]) – The name of the application. The name must be unique in the region in which you are creating the application.tags (
Optional[Mapping[str,str]]) – Key-value pairs you can use to associate with the application.
- 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 cfn_application_mixin_props = servicecatalogappregistry_mixins.CfnApplicationMixinProps( description="description", name="name", tags={ "tags_key": "tags" } )
Attributes
- description
The description of the application.
- name
The name of the application.
The name must be unique in the region in which you are creating the application.
- tags
Key-value pairs you can use to associate with the application.