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[TagsProperty, 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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_appconfig as appconfig

cfn_application_props = appconfig.CfnApplicationProps(
    name="name",

    # the properties below are optional
    description="description",
    tags=[appconfig.CfnApplication.TagsProperty(
        key="key",
        value="value"
    )]
)

Attributes

description

A description of the application.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description

name

A name for the application.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name

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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-tags