pub struct AwsEc2VpcDetails {
pub cidr_block_association_set: Option<Vec<CidrBlockAssociation>>,
pub dhcp_options_id: Option<String>,
pub ipv_6_cidr_block_association_set: Option<Vec<Ipv6CidrBlockAssociation>>,
pub state: Option<String>,
}Expand description
Details about an EC2 VPC.
Fields§
§cidr_block_association_set: Option<Vec<CidrBlockAssociation>>Information about the IPv4 CIDR blocks associated with the VPC.
dhcp_options_id: Option<String>The identifier of the set of Dynamic Host Configuration Protocol (DHCP) options that are associated with the VPC. If the default options are associated with the VPC, then this is default.
ipv_6_cidr_block_association_set: Option<Vec<Ipv6CidrBlockAssociation>>Information about the IPv6 CIDR blocks associated with the VPC.
state: Option<String>The current state of the VPC.
Trait Implementations§
Source§impl Clone for AwsEc2VpcDetails
impl Clone for AwsEc2VpcDetails
Source§fn clone(&self) -> AwsEc2VpcDetails
fn clone(&self) -> AwsEc2VpcDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AwsEc2VpcDetails
impl Debug for AwsEc2VpcDetails
Source§impl Default for AwsEc2VpcDetails
impl Default for AwsEc2VpcDetails
Source§fn default() -> AwsEc2VpcDetails
fn default() -> AwsEc2VpcDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsEc2VpcDetails
impl<'de> Deserialize<'de> for AwsEc2VpcDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsEc2VpcDetails
impl PartialEq for AwsEc2VpcDetails
Source§impl Serialize for AwsEc2VpcDetails
impl Serialize for AwsEc2VpcDetails
impl StructuralPartialEq for AwsEc2VpcDetails
Auto Trait Implementations§
impl Freeze for AwsEc2VpcDetails
impl RefUnwindSafe for AwsEc2VpcDetails
impl Send for AwsEc2VpcDetails
impl Sync for AwsEc2VpcDetails
impl Unpin for AwsEc2VpcDetails
impl UnwindSafe for AwsEc2VpcDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more