EnvironmentReference

class aws_cdk.aws_refactorspaces.EnvironmentReference(*, environment_arn, environment_identifier)

Bases: object

A reference to a Environment resource.

Parameters:
  • environment_arn (str) – The ARN of the Environment resource.

  • environment_identifier (str) – The EnvironmentIdentifier of the Environment resource.

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_refactorspaces as refactorspaces

environment_reference = refactorspaces.EnvironmentReference(
    environment_arn="environmentArn",
    environment_identifier="environmentIdentifier"
)

Attributes

environment_arn

The ARN of the Environment resource.

environment_identifier

The EnvironmentIdentifier of the Environment resource.