[][src]Struct rusoto_ec2::Vpc

pub struct Vpc {
    pub cidr_block: Option<String>,
    pub cidr_block_association_set: Option<Vec<VpcCidrBlockAssociation>>,
    pub dhcp_options_id: Option<String>,
    pub instance_tenancy: Option<String>,
    pub ipv_6_cidr_block_association_set: Option<Vec<VpcIpv6CidrBlockAssociation>>,
    pub is_default: Option<bool>,
    pub owner_id: Option<String>,
    pub state: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub vpc_id: Option<String>,
}

Describes a VPC.

Fields

cidr_block: Option<String>

The primary IPv4 CIDR block for the VPC.

cidr_block_association_set: Option<Vec<VpcCidrBlockAssociation>>

Information about the IPv4 CIDR blocks associated with the VPC.

dhcp_options_id: Option<String>

The ID of the set of DHCP options you've associated with the VPC (or default if the default options are associated with the VPC).

instance_tenancy: Option<String>

The allowed tenancy of instances launched into the VPC.

ipv_6_cidr_block_association_set: Option<Vec<VpcIpv6CidrBlockAssociation>>

Information about the IPv6 CIDR blocks associated with the VPC.

is_default: Option<bool>

Indicates whether the VPC is the default VPC.

owner_id: Option<String>

The ID of the AWS account that owns the VPC.

state: Option<String>

The current state of the VPC.

tags: Option<Vec<Tag>>

Any tags assigned to the VPC.

vpc_id: Option<String>

The ID of the VPC.

Trait Implementations

impl Clone for Vpc[src]

impl Debug for Vpc[src]

impl Default for Vpc[src]

impl PartialEq<Vpc> for Vpc[src]

impl StructuralPartialEq for Vpc[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.