interface CfnVpcLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnVpcLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnVpcLinkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnVpcLinkMixinProps |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnVpcLinkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnVpcLinkMixinProps |
Properties for CfnVpcLinkPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-vpclink.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const cfnVpcLinkMixinProps: apigatewayv2_mixins.CfnVpcLinkMixinProps = {
name: 'name',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the VPC link. |
| security | string[] | A list of security group IDs for the VPC link. |
| subnet | string[] | A list of subnet IDs to include in the VPC link. |
| tags? | { [string]: string } | The collection of tags. |
name?
Type:
string
(optional)
The name of the VPC link.
securityGroupIds?
Type:
string[]
(optional)
A list of security group IDs for the VPC link.
subnetIds?
Type:
string[]
(optional)
A list of subnet IDs to include in the VPC link.
tags?
Type:
{ [string]: string }
(optional)
The collection of tags.
Each tag element is associated with a given resource.

.NET
Go
Java
Python
TypeScript