interface VpcLinkReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Apigatewayv2.VpcLinkReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsapigatewayv2#VpcLinkReference |
Java | software.amazon.awscdk.interfaces.apigatewayv2.VpcLinkReference |
Python | aws_cdk.interfaces.aws_apigatewayv2.VpcLinkReference |
TypeScript | aws-cdk-lib » interfaces » aws_apigatewayv2 » VpcLinkReference |
A reference to a VpcLink resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as interfaces_aws_apigatewayv2 } from 'aws-cdk-lib/interfaces';
const vpcLinkReference: interfaces_aws_apigatewayv2.VpcLinkReference = {
vpcLinkId: 'vpcLinkId',
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | string | The VpcLinkId of the VpcLink resource. |
vpcLinkId
Type:
string
The VpcLinkId of the VpcLink resource.

.NET
Go
Java
Python
TypeScript