Struct rusoto_ec2::VpcCidrBlockAssociation[][src]

pub struct VpcCidrBlockAssociation {
    pub association_id: Option<String>,
    pub cidr_block: Option<String>,
    pub cidr_block_state: Option<VpcCidrBlockState>,
}

Describes an IPv4 CIDR block associated with a VPC.

Fields

The association ID for the IPv4 CIDR block.

The IPv4 CIDR block.

Information about the state of the CIDR block.

Trait Implementations

impl Default for VpcCidrBlockAssociation
[src]

Returns the "default value" for a type. Read more

impl Debug for VpcCidrBlockAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcCidrBlockAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VpcCidrBlockAssociation
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations