import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for AWS::EC2::VPCCidrBlock */ export declare class VpcCidrBlock extends pulumi.CustomResource { /** * Get an existing VpcCidrBlock resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): VpcCidrBlock; /** * Returns true if the given object is an instance of VpcCidrBlock. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VpcCidrBlock; /** * 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. */ readonly amazonProvidedIpv6CidrBlock: pulumi.Output; /** * The Id of the VPC associated CIDR Block. */ readonly awsId: pulumi.Output; /** * An IPv4 CIDR block to associate with the VPC. */ readonly cidrBlock: pulumi.Output; /** * The IP Source of an IPv6 VPC CIDR Block. */ readonly ipSource: pulumi.Output; /** * The ID of the IPv4 IPAM pool to Associate a CIDR from to a VPC. */ readonly ipv4IpamPoolId: pulumi.Output; /** * The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. */ readonly ipv4NetmaskLength: pulumi.Output; /** * The value denoting whether an IPv6 VPC CIDR Block is public or private. */ readonly ipv6AddressAttribute: pulumi.Output; /** * An IPv6 CIDR block from the IPv6 address pool. */ readonly ipv6CidrBlock: pulumi.Output; /** * The name of the location from which we advertise the IPV6 CIDR block. */ readonly ipv6CidrBlockNetworkBorderGroup: pulumi.Output; /** * The ID of the IPv6 IPAM pool to Associate a CIDR from to a VPC. */ readonly ipv6IpamPoolId: pulumi.Output; /** * The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. */ readonly ipv6NetmaskLength: pulumi.Output; /** * The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block. */ readonly ipv6Pool: pulumi.Output; /** * The ID of the VPC. */ readonly vpcId: pulumi.Output; /** * Create a VpcCidrBlock resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VpcCidrBlockArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VpcCidrBlock resource. */ export interface VpcCidrBlockArgs { /** * 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. */ amazonProvidedIpv6CidrBlock?: pulumi.Input; /** * An IPv4 CIDR block to associate with the VPC. */ cidrBlock?: pulumi.Input; /** * The ID of the IPv4 IPAM pool to Associate a CIDR from to a VPC. */ ipv4IpamPoolId?: pulumi.Input; /** * The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. */ ipv4NetmaskLength?: pulumi.Input; /** * An IPv6 CIDR block from the IPv6 address pool. */ ipv6CidrBlock?: pulumi.Input; /** * The name of the location from which we advertise the IPV6 CIDR block. */ ipv6CidrBlockNetworkBorderGroup?: pulumi.Input; /** * The ID of the IPv6 IPAM pool to Associate a CIDR from to a VPC. */ ipv6IpamPoolId?: pulumi.Input; /** * The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. */ ipv6NetmaskLength?: pulumi.Input; /** * The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block. */ ipv6Pool?: pulumi.Input; /** * The ID of the VPC. */ vpcId: pulumi.Input; }