Struct aws_sdk_directconnect::operation::create_transit_virtual_interface::builders::CreateTransitVirtualInterfaceFluentBuilder
source · pub struct CreateTransitVirtualInterfaceFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateTransitVirtualInterface
.
Creates a transit virtual interface. A transit virtual interface should be used to access one or more transit gateways associated with Direct Connect gateways. A transit virtual interface enables the connection of multiple VPCs attached to a transit gateway to a Direct Connect gateway.
If you associate your transit gateway with one or more Direct Connect gateways, the Autonomous System Number (ASN) used by the transit gateway and the Direct Connect gateway must be different. For example, if you use the default ASN 64512 for both your the transit gateway and Direct Connect gateway, the association request fails.
A jumbo MTU value must be either 1500 or 8500. No other values will be accepted. Setting the MTU of a virtual interface to 8500 (jumbo frames) can cause an update to the underlying physical connection if it wasn't updated to support jumbo frames. Updating the connection disrupts network connectivity for all virtual interfaces associated with the connection for up to 30 seconds. To check whether your connection supports jumbo frames, call DescribeConnections
. To check whether your virtual interface supports jumbo frames, call DescribeVirtualInterfaces
.
Implementations§
source§impl CreateTransitVirtualInterfaceFluentBuilder
impl CreateTransitVirtualInterfaceFluentBuilder
sourcepub fn as_input(&self) -> &CreateTransitVirtualInterfaceInputBuilder
pub fn as_input(&self) -> &CreateTransitVirtualInterfaceInputBuilder
Access the CreateTransitVirtualInterface as a reference.
sourcepub async fn send(
self
) -> Result<CreateTransitVirtualInterfaceOutput, SdkError<CreateTransitVirtualInterfaceError, HttpResponse>>
pub async fn send( self ) -> Result<CreateTransitVirtualInterfaceOutput, SdkError<CreateTransitVirtualInterfaceError, 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<CreateTransitVirtualInterfaceOutput, CreateTransitVirtualInterfaceError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateTransitVirtualInterfaceOutput, CreateTransitVirtualInterfaceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn connection_id(self, input: impl Into<String>) -> Self
pub fn connection_id(self, input: impl Into<String>) -> Self
The ID of the 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 connection.
sourcepub fn get_connection_id(&self) -> &Option<String>
pub fn get_connection_id(&self) -> &Option<String>
The ID of the connection.
sourcepub fn new_transit_virtual_interface(
self,
input: NewTransitVirtualInterface
) -> Self
pub fn new_transit_virtual_interface( self, input: NewTransitVirtualInterface ) -> Self
Information about the transit virtual interface.
sourcepub fn set_new_transit_virtual_interface(
self,
input: Option<NewTransitVirtualInterface>
) -> Self
pub fn set_new_transit_virtual_interface( self, input: Option<NewTransitVirtualInterface> ) -> Self
Information about the transit virtual interface.
sourcepub fn get_new_transit_virtual_interface(
&self
) -> &Option<NewTransitVirtualInterface>
pub fn get_new_transit_virtual_interface( &self ) -> &Option<NewTransitVirtualInterface>
Information about the transit virtual interface.
Trait Implementations§
source§impl Clone for CreateTransitVirtualInterfaceFluentBuilder
impl Clone for CreateTransitVirtualInterfaceFluentBuilder
source§fn clone(&self) -> CreateTransitVirtualInterfaceFluentBuilder
fn clone(&self) -> CreateTransitVirtualInterfaceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for CreateTransitVirtualInterfaceFluentBuilder
impl !RefUnwindSafe for CreateTransitVirtualInterfaceFluentBuilder
impl Send for CreateTransitVirtualInterfaceFluentBuilder
impl Sync for CreateTransitVirtualInterfaceFluentBuilder
impl Unpin for CreateTransitVirtualInterfaceFluentBuilder
impl !UnwindSafe for CreateTransitVirtualInterfaceFluentBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more