interface EnvironmentEC2Reference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cloud9.EnvironmentEC2Reference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloud9#EnvironmentEC2Reference |
Java | software.amazon.awscdk.interfaces.cloud9.EnvironmentEC2Reference |
Python | aws_cdk.interfaces.aws_cloud9.EnvironmentEC2Reference |
TypeScript | aws-cdk-lib » interfaces » aws_cloud9 » EnvironmentEC2Reference |
A reference to a EnvironmentEC2 resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloud9 as interfaces_aws_cloud9 } from 'aws-cdk-lib/interfaces';
const environmentEC2Reference: interfaces_aws_cloud9.EnvironmentEC2Reference = {
environmentEc2Arn: 'environmentEc2Arn',
environmentEc2Id: 'environmentEc2Id',
};
Properties
| Name | Type | Description |
|---|---|---|
| environment | string | The ARN of the EnvironmentEC2 resource. |
| environment | string | The Id of the EnvironmentEC2 resource. |
environmentEc2Arn
Type:
string
The ARN of the EnvironmentEC2 resource.
environmentEc2Id
Type:
string
The Id of the EnvironmentEC2 resource.

.NET
Go
Java
Python
TypeScript