pub struct PrivateLinkConnection {
pub association_id: Option<String>,
pub connection_id: Option<String>,
pub connection_type: Option<String>,
pub owner_id: Option<String>,
pub association_date: Option<String>,
}Expand description
PrivateLink connection information
Fields§
§association_id: Option<String>Association ID
connection_id: Option<String>Connection ID
connection_type: Option<String>Connection type
owner_id: Option<String>Owner ID (AWS account)
association_date: Option<String>Association date
Trait Implementations§
Source§impl Clone for PrivateLinkConnection
impl Clone for PrivateLinkConnection
Source§fn clone(&self) -> PrivateLinkConnection
fn clone(&self) -> PrivateLinkConnection
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 PrivateLinkConnection
impl Debug for PrivateLinkConnection
Source§impl<'de> Deserialize<'de> for PrivateLinkConnection
impl<'de> Deserialize<'de> for PrivateLinkConnection
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 PrivateLinkConnection
impl RefUnwindSafe for PrivateLinkConnection
impl Send for PrivateLinkConnection
impl Sync for PrivateLinkConnection
impl Unpin for PrivateLinkConnection
impl UnwindSafe for PrivateLinkConnection
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