pub struct PrivateLinkConnectionDisassociate {
pub association_id: String,
pub connection_id: Option<String>,
pub connection_type: String,
pub principal_id: String,
}Expand description
A single PrivateLink connection to disassociate.
Matches the PrivateLinkConnectionDisassociate schema. associationId,
type, and principalId are required by the spec.
Fields§
§association_id: StringResource share association ID.
connection_id: Option<String>VPC endpoint connection ID.
connection_type: StringType of the connection.
principal_id: StringPrincipal ID that owns the connection, e.g. AWS account ID.
Trait Implementations§
Source§impl Clone for PrivateLinkConnectionDisassociate
impl Clone for PrivateLinkConnectionDisassociate
Source§fn clone(&self) -> PrivateLinkConnectionDisassociate
fn clone(&self) -> PrivateLinkConnectionDisassociate
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<'de> Deserialize<'de> for PrivateLinkConnectionDisassociate
impl<'de> Deserialize<'de> for PrivateLinkConnectionDisassociate
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 PrivateLinkConnectionDisassociate
impl RefUnwindSafe for PrivateLinkConnectionDisassociate
impl Send for PrivateLinkConnectionDisassociate
impl Sync for PrivateLinkConnectionDisassociate
impl Unpin for PrivateLinkConnectionDisassociate
impl UnsafeUnpin for PrivateLinkConnectionDisassociate
impl UnwindSafe for PrivateLinkConnectionDisassociate
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