EnvironmentOptions

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

Bases: object

(deprecated) Options 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.

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

# monitor: appconfig_alpha.Monitor

environment_options = appconfig_alpha.EnvironmentOptions(
    description="description",
    environment_name="environmentName",
    monitors=[monitor]
)

Attributes

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