pub struct DisassociateConnectionFromLag<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* private fields */ }Expand description
Fluent builder constructing a request to DisassociateConnectionFromLag.
Disassociates a connection from a link aggregation group (LAG). The connection is interrupted and re-established as a standalone connection (the connection is not deleted; to delete the connection, use the DeleteConnection request). If the LAG has associated virtual interfaces or hosted connections, they remain associated with the LAG. A disassociated connection owned by an Direct Connect Partner is automatically converted to an interconnect.
If disassociating the connection would cause the LAG to fall below its setting for minimum number of operational connections, the request fails, except when it's the last member of the LAG. If all connections are disassociated, the LAG continues to exist as an empty LAG with no physical connections.
Implementations
impl<C, M, R> DisassociateConnectionFromLag<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> DisassociateConnectionFromLag<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<DisassociateConnectionFromLagOutput, SdkError<DisassociateConnectionFromLagError>> where
R::Policy: SmithyRetryPolicy<DisassociateConnectionFromLagInputOperationOutputAlias, DisassociateConnectionFromLagOutput, DisassociateConnectionFromLagError, DisassociateConnectionFromLagInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<DisassociateConnectionFromLagOutput, SdkError<DisassociateConnectionFromLagError>> where
R::Policy: SmithyRetryPolicy<DisassociateConnectionFromLagInputOperationOutputAlias, DisassociateConnectionFromLagOutput, DisassociateConnectionFromLagError, DisassociateConnectionFromLagInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The ID of the connection.
The ID of the connection.
The ID of the LAG.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !RefUnwindSafe for DisassociateConnectionFromLag<C, M, R>
impl<C, M, R> Send for DisassociateConnectionFromLag<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for DisassociateConnectionFromLag<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for DisassociateConnectionFromLag<C, M, R>
impl<C = DynConnector, M = DefaultMiddleware, R = Standard> !UnwindSafe for DisassociateConnectionFromLag<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more