interface CfnVpcLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnVpcLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnVpcLinkMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnVpcLinkMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnVpcLinkMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » 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 { aws_apigatewayv2 as apigatewayv2 } from '@aws-cdk/cfn-property-mixins';
const cfnVpcLinkMixinProps: apigatewayv2.CfnVpcLinkMixinProps = {
name: 'name',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the VPC link. |
| security | (string | ISecurity)[] | A list of security group IDs for the VPC link. |
| subnet | (string | ISubnet)[] | 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 | ISecurity)[]
(optional)
A list of security group IDs for the VPC link.
subnetIds?
Type:
(string | ISubnet)[]
(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