interface AllocateVpcIpv6CidrRequest
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.AllocateVpcIpv6CidrRequest |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#AllocateVpcIpv6CidrRequest |
Java | software.amazon.awscdk.services.ec2.AllocateVpcIpv6CidrRequest |
Python | aws_cdk.aws_ec2.AllocateVpcIpv6CidrRequest |
TypeScript (source) | aws-cdk-lib » aws_ec2 » AllocateVpcIpv6CidrRequest |
Request for allocation of the VPC IPv6 CIDR.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import * as constructs from 'constructs';
declare const construct: constructs.Construct;
const allocateVpcIpv6CidrRequest: ec2.AllocateVpcIpv6CidrRequest = {
scope: construct,
vpcId: 'vpcId',
};
Properties
Name | Type | Description |
---|---|---|
scope | Construct | The VPC construct to attach to. |
vpc | string | The id of the VPC. |
scope
Type:
Construct
The VPC construct to attach to.
vpcId
Type:
string
The id of the VPC.