Struct aws_sdk_ec2::operation::delete_vpn_connection_route::builders::DeleteVpnConnectionRouteFluentBuilder
source · pub struct DeleteVpnConnectionRouteFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteVpnConnectionRoute.
Deletes the specified static route associated with a VPN connection between an existing virtual private gateway and a VPN customer gateway. The static route allows traffic to be routed from the virtual private gateway to the VPN customer gateway.
Implementations§
source§impl DeleteVpnConnectionRouteFluentBuilder
impl DeleteVpnConnectionRouteFluentBuilder
sourcepub fn as_input(&self) -> &DeleteVpnConnectionRouteInputBuilder
pub fn as_input(&self) -> &DeleteVpnConnectionRouteInputBuilder
Access the DeleteVpnConnectionRoute as a reference.
sourcepub async fn send(
self
) -> Result<DeleteVpnConnectionRouteOutput, SdkError<DeleteVpnConnectionRouteError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteVpnConnectionRouteOutput, SdkError<DeleteVpnConnectionRouteError, 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<DeleteVpnConnectionRouteOutput, DeleteVpnConnectionRouteError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteVpnConnectionRouteOutput, DeleteVpnConnectionRouteError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn destination_cidr_block(self, input: impl Into<String>) -> Self
pub fn destination_cidr_block(self, input: impl Into<String>) -> Self
The CIDR block associated with the local subnet of the customer network.
sourcepub fn set_destination_cidr_block(self, input: Option<String>) -> Self
pub fn set_destination_cidr_block(self, input: Option<String>) -> Self
The CIDR block associated with the local subnet of the customer network.
sourcepub fn get_destination_cidr_block(&self) -> &Option<String>
pub fn get_destination_cidr_block(&self) -> &Option<String>
The CIDR block associated with the local subnet of the customer network.
sourcepub fn vpn_connection_id(self, input: impl Into<String>) -> Self
pub fn vpn_connection_id(self, input: impl Into<String>) -> Self
The ID of the VPN connection.
sourcepub fn set_vpn_connection_id(self, input: Option<String>) -> Self
pub fn set_vpn_connection_id(self, input: Option<String>) -> Self
The ID of the VPN connection.
sourcepub fn get_vpn_connection_id(&self) -> &Option<String>
pub fn get_vpn_connection_id(&self) -> &Option<String>
The ID of the VPN connection.
Trait Implementations§
source§impl Clone for DeleteVpnConnectionRouteFluentBuilder
impl Clone for DeleteVpnConnectionRouteFluentBuilder
source§fn clone(&self) -> DeleteVpnConnectionRouteFluentBuilder
fn clone(&self) -> DeleteVpnConnectionRouteFluentBuilder
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 DeleteVpnConnectionRouteFluentBuilder
impl !RefUnwindSafe for DeleteVpnConnectionRouteFluentBuilder
impl Send for DeleteVpnConnectionRouteFluentBuilder
impl Sync for DeleteVpnConnectionRouteFluentBuilder
impl Unpin for DeleteVpnConnectionRouteFluentBuilder
impl !UnwindSafe for DeleteVpnConnectionRouteFluentBuilder
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