pub struct AwsVpcNetworkHeartbeatData {
pub status: NetworkHeartbeatStatus,
pub vpc_id: Option<String>,
pub vpc_state: Option<String>,
pub cidr_block: Option<String>,
pub public_subnet_ids: Vec<String>,
pub private_subnet_ids: Vec<String>,
pub availability_zones: Vec<String>,
pub internet_gateway_id: Option<String>,
pub nat_gateway_id: Option<String>,
pub route_table_count: u32,
pub security_group_id: Option<String>,
pub is_byo_vpc: bool,
}Fields§
§status: NetworkHeartbeatStatus§vpc_id: Option<String>§vpc_state: Option<String>§cidr_block: Option<String>§public_subnet_ids: Vec<String>§private_subnet_ids: Vec<String>§availability_zones: Vec<String>§internet_gateway_id: Option<String>§nat_gateway_id: Option<String>§route_table_count: u32§security_group_id: Option<String>§is_byo_vpc: boolTrait Implementations§
Source§impl Clone for AwsVpcNetworkHeartbeatData
impl Clone for AwsVpcNetworkHeartbeatData
Source§fn clone(&self) -> AwsVpcNetworkHeartbeatData
fn clone(&self) -> AwsVpcNetworkHeartbeatData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AwsVpcNetworkHeartbeatData
impl Debug for AwsVpcNetworkHeartbeatData
Source§impl<'de> Deserialize<'de> for AwsVpcNetworkHeartbeatData
impl<'de> Deserialize<'de> for AwsVpcNetworkHeartbeatData
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 AwsVpcNetworkHeartbeatData
impl PartialEq for AwsVpcNetworkHeartbeatData
Source§fn eq(&self, other: &AwsVpcNetworkHeartbeatData) -> bool
fn eq(&self, other: &AwsVpcNetworkHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsVpcNetworkHeartbeatData
Auto Trait Implementations§
impl Freeze for AwsVpcNetworkHeartbeatData
impl RefUnwindSafe for AwsVpcNetworkHeartbeatData
impl Send for AwsVpcNetworkHeartbeatData
impl Sync for AwsVpcNetworkHeartbeatData
impl Unpin for AwsVpcNetworkHeartbeatData
impl UnsafeUnpin for AwsVpcNetworkHeartbeatData
impl UnwindSafe for AwsVpcNetworkHeartbeatData
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