CfnApplicationProps
- class aws_cdk.aws_appconfig.CfnApplicationProps(*, name, description=None, tags=None)
Bases:
object
Properties for defining a
CfnApplication
.- Parameters:
name (
str
) – A name for the application.description (
Optional
[str
]) – A description of 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 import aws_appconfig as appconfig cfn_application_props = appconfig.CfnApplicationProps( name="name", # the properties below are optional description="description", 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.