pub struct ActiveActiveVpcRegion {
pub id: Option<i32>,
pub source_region: Option<String>,
pub vpc_peerings: Option<Vec<ActiveActiveVpcPeering>>,
}Expand description
Active-Active VPC Peering region
Fields§
§id: Option<i32>Region ID
source_region: Option<String>Source region name
vpc_peerings: Option<Vec<ActiveActiveVpcPeering>>VPC Peerings in this region
Trait Implementations§
Source§impl Clone for ActiveActiveVpcRegion
impl Clone for ActiveActiveVpcRegion
Source§fn clone(&self) -> ActiveActiveVpcRegion
fn clone(&self) -> ActiveActiveVpcRegion
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 ActiveActiveVpcRegion
impl Debug for ActiveActiveVpcRegion
Source§impl<'de> Deserialize<'de> for ActiveActiveVpcRegion
impl<'de> Deserialize<'de> for ActiveActiveVpcRegion
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
Auto Trait Implementations§
impl Freeze for ActiveActiveVpcRegion
impl RefUnwindSafe for ActiveActiveVpcRegion
impl Send for ActiveActiveVpcRegion
impl Sync for ActiveActiveVpcRegion
impl Unpin for ActiveActiveVpcRegion
impl UnwindSafe for ActiveActiveVpcRegion
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