Struct aws_sdk_ec2::operation::unassign_private_nat_gateway_address::UnassignPrivateNatGatewayAddressInput
source · #[non_exhaustive]pub struct UnassignPrivateNatGatewayAddressInput { /* private fields */ }
Implementations§
source§impl UnassignPrivateNatGatewayAddressInput
impl UnassignPrivateNatGatewayAddressInput
sourcepub fn nat_gateway_id(&self) -> Option<&str>
pub fn nat_gateway_id(&self) -> Option<&str>
The NAT gateway ID.
sourcepub fn private_ip_addresses(&self) -> Option<&[String]>
pub fn private_ip_addresses(&self) -> Option<&[String]>
The private IPv4 addresses you want to unassign.
sourcepub fn max_drain_duration_seconds(&self) -> Option<i32>
pub fn max_drain_duration_seconds(&self) -> Option<i32>
The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds.
source§impl UnassignPrivateNatGatewayAddressInput
impl UnassignPrivateNatGatewayAddressInput
sourcepub fn builder() -> UnassignPrivateNatGatewayAddressInputBuilder
pub fn builder() -> UnassignPrivateNatGatewayAddressInputBuilder
Creates a new builder-style object to manufacture UnassignPrivateNatGatewayAddressInput
.
source§impl UnassignPrivateNatGatewayAddressInput
impl UnassignPrivateNatGatewayAddressInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UnassignPrivateNatGatewayAddress, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UnassignPrivateNatGatewayAddress, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UnassignPrivateNatGatewayAddress
>
Trait Implementations§
source§impl Clone for UnassignPrivateNatGatewayAddressInput
impl Clone for UnassignPrivateNatGatewayAddressInput
source§fn clone(&self) -> UnassignPrivateNatGatewayAddressInput
fn clone(&self) -> UnassignPrivateNatGatewayAddressInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<UnassignPrivateNatGatewayAddressInput> for UnassignPrivateNatGatewayAddressInput
impl PartialEq<UnassignPrivateNatGatewayAddressInput> for UnassignPrivateNatGatewayAddressInput
source§fn eq(&self, other: &UnassignPrivateNatGatewayAddressInput) -> bool
fn eq(&self, other: &UnassignPrivateNatGatewayAddressInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnassignPrivateNatGatewayAddressInput
Auto Trait Implementations§
impl RefUnwindSafe for UnassignPrivateNatGatewayAddressInput
impl Send for UnassignPrivateNatGatewayAddressInput
impl Sync for UnassignPrivateNatGatewayAddressInput
impl Unpin for UnassignPrivateNatGatewayAddressInput
impl UnwindSafe for UnassignPrivateNatGatewayAddressInput
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
Mutably borrows from an owned value. Read more