ApplicationProps

class aws_cdk.aws_appconfig.ApplicationProps(*, application_name=None, description=None)

Bases: object

Properties for the Application construct.

Parameters:
  • application_name (Optional[str]) – The name of the application. Default: - A name is generated.

  • description (Optional[str]) – The description for the application. Default: - No description.

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

application_props = appconfig.ApplicationProps(
    application_name="applicationName",
    description="description"
)

Attributes

application_name

The name of the application.

Default:
  • A name is generated.

description

The description for the application.

Default:
  • No description.