pub struct NextHopInterconnectAttachment {
pub site_to_site_data_transfer: Option<bool>,
pub uri: Option<String>,
pub vpc_network: Option<String>,
}Expand description
A route next hop that leads to an interconnect attachment resource.
This type is not used in any activity, and only used as part of another schema.
Fields§
§site_to_site_data_transfer: Option<bool>Indicates whether site-to-site data transfer is allowed for this interconnect attachment resource. Data transfer is available only in supported locations.
uri: Option<String>The URI of the interconnect attachment resource.
vpc_network: Option<String>The VPC network where this interconnect attachment is located.
Trait Implementations§
Source§impl Clone for NextHopInterconnectAttachment
impl Clone for NextHopInterconnectAttachment
Source§fn clone(&self) -> NextHopInterconnectAttachment
fn clone(&self) -> NextHopInterconnectAttachment
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 Default for NextHopInterconnectAttachment
impl Default for NextHopInterconnectAttachment
Source§fn default() -> NextHopInterconnectAttachment
fn default() -> NextHopInterconnectAttachment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NextHopInterconnectAttachment
impl<'de> Deserialize<'de> for NextHopInterconnectAttachment
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
impl Part for NextHopInterconnectAttachment
Auto Trait Implementations§
impl Freeze for NextHopInterconnectAttachment
impl RefUnwindSafe for NextHopInterconnectAttachment
impl Send for NextHopInterconnectAttachment
impl Sync for NextHopInterconnectAttachment
impl Unpin for NextHopInterconnectAttachment
impl UnwindSafe for NextHopInterconnectAttachment
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