Interface CfnVPCCidrBlockMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVPCCidrBlockMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.ec2.mixins.*;
CfnVPCCidrBlockMixinProps cfnVPCCidrBlockMixinProps = CfnVPCCidrBlockMixinProps.builder()
.amazonProvidedIpv6CidrBlock(false)
.cidrBlock("cidrBlock")
.ipv4IpamPoolId("ipv4IpamPoolId")
.ipv4NetmaskLength(123)
.ipv6CidrBlock("ipv6CidrBlock")
.ipv6CidrBlockNetworkBorderGroup("ipv6CidrBlockNetworkBorderGroup")
.ipv6IpamPoolId("ipv6IpamPoolId")
.ipv6NetmaskLength(123)
.ipv6Pool("ipv6Pool")
.vpcId("vpcId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVPCCidrBlockMixinPropsstatic final classAn implementation forCfnVPCCidrBlockMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectRequests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC.default StringAn IPv4 CIDR block to associate with the VPC.default StringAssociate a CIDR allocated from an IPv4 IPAM pool to a VPC.default NumberThe netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool.default StringAn IPv6 CIDR block from the IPv6 address pool.default StringThe name of the location from which we advertise the IPV6 CIDR block.default StringAssociates a CIDR allocated from an IPv6 IPAM pool to a VPC.default NumberThe netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool.default StringThe ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.default StringgetVpcId()The ID of the VPC.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAmazonProvidedIpv6CidrBlock
Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC.You cannot specify the range of IPv6 addresses or the size of the CIDR block.
Returns union: either
BooleanorIResolvable- See Also:
-
getCidrBlock
An IPv4 CIDR block to associate with the VPC.- See Also:
-
getIpv4IpamPoolId
Associate a CIDR allocated from an IPv4 IPAM pool to a VPC.For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide .
- See Also:
-
getIpv4NetmaskLength
The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool.For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide .
- See Also:
-
getIpv6CidrBlock
An IPv6 CIDR block from the IPv6 address pool. You must also specifyIpv6Poolin the request.To let Amazon choose the IPv6 CIDR block for you, omit this parameter.
- See Also:
-
getIpv6CidrBlockNetworkBorderGroup
The name of the location from which we advertise the IPV6 CIDR block.Use this parameter to limit the CIDR block to this location.
You must set
AmazonProvidedIpv6CidrBlocktotrueto use this parameter.You can have one IPv6 CIDR block association per network border group.
- See Also:
-
getIpv6IpamPoolId
Associates a CIDR allocated from an IPv6 IPAM pool to a VPC.For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide .
- See Also:
-
getIpv6NetmaskLength
The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool.For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide .
- See Also:
-
getIpv6Pool
The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.- See Also:
-
getVpcId
The ID of the VPC.- See Also:
-
builder
- Returns:
- a
CfnVPCCidrBlockMixinProps.BuilderofCfnVPCCidrBlockMixinProps
-