pub struct AssociateVirtualInterface { /* private fields */ }
Expand description
Fluent builder constructing a request to AssociateVirtualInterface
.
Associates a virtual interface with a specified link aggregation group (LAG) or connection. Connectivity to Amazon Web Services is temporarily interrupted as the virtual interface is being migrated. If the target connection or LAG has an associated virtual interface with a conflicting VLAN number or a conflicting IP address, the operation fails.
Virtual interfaces associated with a hosted connection cannot be associated with a LAG; hosted connections must be migrated along with their virtual interfaces using AssociateHostedConnection
.
To reassociate a virtual interface to a new connection or LAG, the requester must own either the virtual interface itself or the connection to which the virtual interface is currently associated. Additionally, the requester must own the connection or LAG for the association.
Implementations
sourceimpl AssociateVirtualInterface
impl AssociateVirtualInterface
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<AssociateVirtualInterface, AwsResponseRetryClassifier>, SdkError<AssociateVirtualInterfaceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<AssociateVirtualInterface, AwsResponseRetryClassifier>, SdkError<AssociateVirtualInterfaceError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<AssociateVirtualInterfaceOutput, SdkError<AssociateVirtualInterfaceError>>
pub async fn send(
self
) -> Result<AssociateVirtualInterfaceOutput, SdkError<AssociateVirtualInterfaceError>>
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.
sourcepub fn virtual_interface_id(self, input: impl Into<String>) -> Self
pub fn virtual_interface_id(self, input: impl Into<String>) -> Self
The ID of the virtual interface.
sourcepub fn set_virtual_interface_id(self, input: Option<String>) -> Self
pub fn set_virtual_interface_id(self, input: Option<String>) -> Self
The ID of the virtual interface.
sourcepub fn connection_id(self, input: impl Into<String>) -> Self
pub fn connection_id(self, input: impl Into<String>) -> Self
The ID of the LAG or connection.
sourcepub fn set_connection_id(self, input: Option<String>) -> Self
pub fn set_connection_id(self, input: Option<String>) -> Self
The ID of the LAG or connection.
Trait Implementations
sourceimpl Clone for AssociateVirtualInterface
impl Clone for AssociateVirtualInterface
sourcefn clone(&self) -> AssociateVirtualInterface
fn clone(&self) -> AssociateVirtualInterface
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more