pub struct CreateTransitVirtualInterface { /* 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.
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
sourceimpl CreateTransitVirtualInterface
impl CreateTransitVirtualInterface
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateTransitVirtualInterface, AwsResponseRetryClassifier>, SdkError<CreateTransitVirtualInterfaceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateTransitVirtualInterface, AwsResponseRetryClassifier>, SdkError<CreateTransitVirtualInterfaceError>>
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<CreateTransitVirtualInterfaceOutput, SdkError<CreateTransitVirtualInterfaceError>>
pub async fn send(
self
) -> Result<CreateTransitVirtualInterfaceOutput, SdkError<CreateTransitVirtualInterfaceError>>
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 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 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.
Trait Implementations
sourceimpl Clone for CreateTransitVirtualInterface
impl Clone for CreateTransitVirtualInterface
sourcefn clone(&self) -> CreateTransitVirtualInterface
fn clone(&self) -> CreateTransitVirtualInterface
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more