interface InstanceConnectEndpointReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.InstanceConnectEndpointReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#InstanceConnectEndpointReference |
Java | software.amazon.awscdk.interfaces.ec2.InstanceConnectEndpointReference |
Python | aws_cdk.interfaces.aws_ec2.InstanceConnectEndpointReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » InstanceConnectEndpointReference |
A reference to a InstanceConnectEndpoint resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_ec2 } from 'aws-cdk-lib/interfaces';
const instanceConnectEndpointReference: interfaces_ec2.InstanceConnectEndpointReference = {
instanceConnectEndpointId: 'instanceConnectEndpointId',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Id of the InstanceConnectEndpoint resource. |
instanceConnectEndpointId
Type:
string
The Id of the InstanceConnectEndpoint resource.

.NET
Go
Java
Python
TypeScript