CfnApplicationProps

class aws_cdk.aws_servicecatalogappregistry.CfnApplicationProps(*, name, description=None, tags=None)

Bases: object

Properties for defining a CfnApplication.

Parameters:
  • name (str) – The name of the application. The name must be unique in the region in which you are creating the application.

  • description (Optional[str]) – The description of the application.

  • tags (Optional[Mapping[str, str]]) – Key-value pairs you can use to associate with the application.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-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_servicecatalogappregistry as servicecatalogappregistry

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

    # the properties below are optional
    description="description",
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

The description of the application.

Link:

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

name

The name of the application.

The name must be unique in the region in which you are creating the application.

Link:

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

tags

Key-value pairs you can use to associate with the application.

Link:

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