[][src]Struct rusoto_ec2::AssociateVpcCidrBlockRequest

pub struct AssociateVpcCidrBlockRequest {
    pub amazon_provided_ipv_6_cidr_block: Option<bool>,
    pub cidr_block: Option<String>,
    pub ipv_6_cidr_block: Option<String>,
    pub ipv_6_cidr_block_network_border_group: Option<String>,
    pub ipv_6_pool: Option<String>,
    pub vpc_id: String,
}

Fields

amazon_provided_ipv_6_cidr_block: Option<bool>

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.

cidr_block: Option<String>

An IPv4 CIDR block to associate with the VPC.

ipv_6_cidr_block: Option<String>

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.

ipv_6_cidr_block_network_border_group: Option<String>

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 AmazonProvidedIpv6CidrBlock to true to use this parameter.

You can have one IPv6 CIDR block association per network border group.

ipv_6_pool: Option<String>

The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block.

vpc_id: String

The ID of the VPC.

Trait Implementations

impl Clone for AssociateVpcCidrBlockRequest[src]

impl Debug for AssociateVpcCidrBlockRequest[src]

impl Default for AssociateVpcCidrBlockRequest[src]

impl PartialEq<AssociateVpcCidrBlockRequest> for AssociateVpcCidrBlockRequest[src]

impl StructuralPartialEq for AssociateVpcCidrBlockRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.