EnvironmentEC2Reference

class aws_cdk.aws_cloud9.EnvironmentEC2Reference(*, environment_ec2_arn, environment_ec2_id)

Bases: object

A reference to a EnvironmentEC2 resource.

Parameters:
  • environment_ec2_arn (str) – The ARN of the EnvironmentEC2 resource.

  • environment_ec2_id (str) – The Id of the EnvironmentEC2 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_cloud9 as cloud9

environment_eC2_reference = cloud9.EnvironmentEC2Reference(
    environment_ec2_arn="environmentEc2Arn",
    environment_ec2_id="environmentEc2Id"
)

Attributes

environment_ec2_arn

The ARN of the EnvironmentEC2 resource.

environment_ec2_id

The Id of the EnvironmentEC2 resource.