Interface CfnVPCCidrBlockProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVPCCidrBlockProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.135Z") @Stability(Stable) public interface CfnVPCCidrBlockProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVPCCidrBlock.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 CfnVPCCidrBlockProps cfnVPCCidrBlockProps = CfnVPCCidrBlockProps.builder()
         .vpcId("vpcId")
         // the properties below are optional
         .amazonProvidedIpv6CidrBlock(false)
         .cidrBlock("cidrBlock")
         .ipv4IpamPoolId("ipv4IpamPoolId")
         .ipv4NetmaskLength(123)
         .ipv6CidrBlock("ipv6CidrBlock")
         .ipv6IpamPoolId("ipv6IpamPoolId")
         .ipv6NetmaskLength(123)
         .ipv6Pool("ipv6Pool")
         .build();
 
  • Method Details

    • getVpcId

      @Stability(Stable) @NotNull String getVpcId()
      The ID of the VPC.
    • getAmazonProvidedIpv6CidrBlock

      @Stability(Stable) @Nullable default Object 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.

    • getCidrBlock

      @Stability(Stable) @Nullable default String getCidrBlock()
      An IPv4 CIDR block to associate with the VPC.
    • getIpv4IpamPoolId

      @Stability(Stable) @Nullable default String 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 .

    • getIpv4NetmaskLength

      @Stability(Stable) @Nullable default Number 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 .

    • getIpv6CidrBlock

      @Stability(Stable) @Nullable default String getIpv6CidrBlock()
      An IPv6 CIDR block from the IPv6 address pool. You must also specify Ipv6Pool in the request.

      To let Amazon choose the IPv6 CIDR block for you, omit this parameter.

    • getIpv6IpamPoolId

      @Stability(Stable) @Nullable default String 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 .

    • getIpv6NetmaskLength

      @Stability(Stable) @Nullable default Number 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 .

    • getIpv6Pool

      @Stability(Stable) @Nullable default String getIpv6Pool()
      The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.
    • builder

      @Stability(Stable) static CfnVPCCidrBlockProps.Builder builder()
      Returns:
      a CfnVPCCidrBlockProps.Builder of CfnVPCCidrBlockProps