EnvironmentProps

class aws_cdk.aws_appconfig_alpha.EnvironmentProps(*, description=None, environment_name=None, monitors=None, application)

Bases: EnvironmentOptions

(deprecated) Properties for the Environment construct.

Parameters:
  • description (Optional[str]) – (deprecated) The description of the environment. Default: - No description.

  • environment_name (Optional[str]) – (deprecated) The name of the environment. Default: - A name is generated.

  • monitors (Optional[Sequence[Monitor]]) – (deprecated) The monitors for the environment. Default: - No monitors.

  • application (IApplication) – (deprecated) The application to be associated with the environment.

Stability:

deprecated

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_alpha as appconfig_alpha

# application: appconfig_alpha.Application
# monitor: appconfig_alpha.Monitor

environment_props = appconfig_alpha.EnvironmentProps(
    application=application,

    # the properties below are optional
    description="description",
    environment_name="environmentName",
    monitors=[monitor]
)

Attributes

application

(deprecated) The application to be associated with the environment.

Stability:

deprecated

description

(deprecated) The description of the environment.

Default:
  • No description.

Stability:

deprecated

environment_name

(deprecated) The name of the environment.

Default:
  • A name is generated.

Stability:

deprecated

monitors

(deprecated) The monitors for the environment.

Default:
  • No monitors.

Stability:

deprecated