interface EnvironmentReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MWAA.EnvironmentReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmwaa#EnvironmentReference | 
|  Java | software.amazon.awscdk.services.mwaa.EnvironmentReference | 
|  Python | aws_cdk.aws_mwaa.EnvironmentReference | 
|  TypeScript | aws-cdk-lib»aws_mwaa»EnvironmentReference | 
A reference to a Environment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mwaa as mwaa } from 'aws-cdk-lib';
const environmentReference: mwaa.EnvironmentReference = {
  environmentArn: 'environmentArn',
  environmentName: 'environmentName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| environment | string | The ARN of the Environment resource. | 
| environment | string | The Name of the Environment resource. | 
environmentArn
Type:
string
The ARN of the Environment resource.
environmentName
Type:
string
The Name of the Environment resource.
