Struct aws_sdk_directconnect::operation::disassociate_connection_from_lag::DisassociateConnectionFromLagInput
source · #[non_exhaustive]pub struct DisassociateConnectionFromLagInput {
pub connection_id: Option<String>,
pub lag_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.connection_id: Option<String>The ID of the connection.
lag_id: Option<String>The ID of the LAG.
Implementations§
source§impl DisassociateConnectionFromLagInput
impl DisassociateConnectionFromLagInput
sourcepub fn builder() -> DisassociateConnectionFromLagInputBuilder
pub fn builder() -> DisassociateConnectionFromLagInputBuilder
Creates a new builder-style object to manufacture DisassociateConnectionFromLagInput.
Trait Implementations§
source§impl Clone for DisassociateConnectionFromLagInput
impl Clone for DisassociateConnectionFromLagInput
source§fn clone(&self) -> DisassociateConnectionFromLagInput
fn clone(&self) -> DisassociateConnectionFromLagInput
Returns a copy 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 PartialEq<DisassociateConnectionFromLagInput> for DisassociateConnectionFromLagInput
impl PartialEq<DisassociateConnectionFromLagInput> for DisassociateConnectionFromLagInput
source§fn eq(&self, other: &DisassociateConnectionFromLagInput) -> bool
fn eq(&self, other: &DisassociateConnectionFromLagInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DisassociateConnectionFromLagInput
Auto Trait Implementations§
impl RefUnwindSafe for DisassociateConnectionFromLagInput
impl Send for DisassociateConnectionFromLagInput
impl Sync for DisassociateConnectionFromLagInput
impl Unpin for DisassociateConnectionFromLagInput
impl UnwindSafe for DisassociateConnectionFromLagInput
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