EnvironmentPlaceholderValues

class aws_cdk.cx_api.EnvironmentPlaceholderValues(*, account_id, partition, region)

Bases: object

(deprecated) Return the appropriate values for the environment placeholders.

Parameters:
  • account_id (str) – (deprecated) Return the account.

  • partition (str) – (deprecated) Return the partition.

  • region (str) – (deprecated) Return the region.

Deprecated:

The definition of this type has moved to @aws-cdk/cloud-assembly-api.

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.cx_api as cx_api

environment_placeholder_values = cx_api.EnvironmentPlaceholderValues(
    account_id="accountId",
    partition="partition",
    region="region"
)

Attributes

account_id

(deprecated) Return the account.

Stability:

deprecated

partition

(deprecated) Return the partition.

Stability:

deprecated

region

(deprecated) Return the region.

Stability:

deprecated