CfnApplicationMixinProps
- class aws_cdk.mixins_preview.aws_appconfig.mixins.CfnApplicationMixinProps(*, description=None, name=None, tags=None)
Bases:
objectProperties for CfnApplicationPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the application.name (
Optional[str]) – A name for the application.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata to assign to the application. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
- 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_appconfig import mixins as appconfig_mixins cfn_application_mixin_props = appconfig_mixins.CfnApplicationMixinProps( description="description", name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the application.
- name
A name for the application.
- tags
Metadata to assign to the application.
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.