Struct aws_sdk_directconnect::operation::associate_virtual_interface::builders::AssociateVirtualInterfaceFluentBuilder
source · pub struct AssociateVirtualInterfaceFluentBuilder { /* 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§
source§impl AssociateVirtualInterfaceFluentBuilder
impl AssociateVirtualInterfaceFluentBuilder
sourcepub fn as_input(&self) -> &AssociateVirtualInterfaceInputBuilder
pub fn as_input(&self) -> &AssociateVirtualInterfaceInputBuilder
Access the AssociateVirtualInterface as a reference.
sourcepub async fn send(
self
) -> Result<AssociateVirtualInterfaceOutput, SdkError<AssociateVirtualInterfaceError, HttpResponse>>
pub async fn send( self ) -> Result<AssociateVirtualInterfaceOutput, SdkError<AssociateVirtualInterfaceError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<AssociateVirtualInterfaceOutput, AssociateVirtualInterfaceError, Self>
pub fn customize( self ) -> CustomizableOperation<AssociateVirtualInterfaceOutput, AssociateVirtualInterfaceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_virtual_interface_id(&self) -> &Option<String>
pub fn get_virtual_interface_id(&self) -> &Option<String>
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.
sourcepub fn get_connection_id(&self) -> &Option<String>
pub fn get_connection_id(&self) -> &Option<String>
The ID of the LAG or connection.
Trait Implementations§
source§impl Clone for AssociateVirtualInterfaceFluentBuilder
impl Clone for AssociateVirtualInterfaceFluentBuilder
source§fn clone(&self) -> AssociateVirtualInterfaceFluentBuilder
fn clone(&self) -> AssociateVirtualInterfaceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more