EnvironmentReference
- class aws_cdk.interfaces.aws_mwaa.EnvironmentReference(*, environment_arn, environment_name)
Bases:
objectA reference to a Environment resource.
- Parameters:
environment_arn (
str) – The ARN of the Environment resource.environment_name (
str) – The Name 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.interfaces import aws_mwaa as interfaces_mwaa environment_reference = interfaces_mwaa.EnvironmentReference( environment_arn="environmentArn", environment_name="environmentName" )
Attributes
- environment_arn
The ARN of the Environment resource.
- environment_name
The Name of the Environment resource.