Struct rusoto_ec2::SubnetIpv6CidrBlockAssociation[][src]

pub struct SubnetIpv6CidrBlockAssociation {
    pub association_id: Option<String>,
    pub ipv_6_cidr_block: Option<String>,
    pub ipv_6_cidr_block_state: Option<SubnetCidrBlockState>,
}

Describes an IPv6 CIDR block associated with a subnet.

Fields

The association ID for the CIDR block.

The IPv6 CIDR block.

Information about the state of the CIDR block.

Trait Implementations

impl Default for SubnetIpv6CidrBlockAssociation
[src]

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

impl Debug for SubnetIpv6CidrBlockAssociation
[src]

Formats the value using the given formatter. Read more

impl Clone for SubnetIpv6CidrBlockAssociation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SubnetIpv6CidrBlockAssociation
[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