pub struct NextHopSpoke {
pub site_to_site_data_transfer: Option<bool>,
pub uri: Option<String>,
}Expand description
A route next hop that leads to a spoke 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 spoke resource. Data transfer is available only in supported locations. Whether this route is accessible to other hybrid spokes with site-to-site data transfer enabled. If this is false, the route is only accessible to VPC spokes of the connected Hub.
uri: Option<String>The URI of the spoke resource.
Trait Implementations§
Source§impl Clone for NextHopSpoke
impl Clone for NextHopSpoke
Source§fn clone(&self) -> NextHopSpoke
fn clone(&self) -> NextHopSpoke
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 NextHopSpoke
impl Debug for NextHopSpoke
Source§impl Default for NextHopSpoke
impl Default for NextHopSpoke
Source§fn default() -> NextHopSpoke
fn default() -> NextHopSpoke
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NextHopSpoke
impl<'de> Deserialize<'de> for NextHopSpoke
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 Serialize for NextHopSpoke
impl Serialize for NextHopSpoke
impl Part for NextHopSpoke
Auto Trait Implementations§
impl Freeze for NextHopSpoke
impl RefUnwindSafe for NextHopSpoke
impl Send for NextHopSpoke
impl Sync for NextHopSpoke
impl Unpin for NextHopSpoke
impl UnwindSafe for NextHopSpoke
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