#[non_exhaustive]pub struct DeletePublicIpv4PoolInput {
pub dry_run: Option<bool>,
pub pool_id: Option<String>,
pub network_border_group: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dry_run: Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
pool_id: Option<String>
The ID of the public IPv4 pool you want to delete.
network_border_group: Option<String>
The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
Implementations§
source§impl DeletePublicIpv4PoolInput
impl DeletePublicIpv4PoolInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn network_border_group(&self) -> Option<&str>
pub fn network_border_group(&self) -> Option<&str>
The Availability Zone (AZ) or Local Zone (LZ) network border group that the resource that the IP address is assigned to is in. Defaults to an AZ network border group. For more information on available Local Zones, see Local Zone availability in the Amazon EC2 User Guide.
source§impl DeletePublicIpv4PoolInput
impl DeletePublicIpv4PoolInput
sourcepub fn builder() -> DeletePublicIpv4PoolInputBuilder
pub fn builder() -> DeletePublicIpv4PoolInputBuilder
Creates a new builder-style object to manufacture DeletePublicIpv4PoolInput
.
Trait Implementations§
source§impl Clone for DeletePublicIpv4PoolInput
impl Clone for DeletePublicIpv4PoolInput
source§fn clone(&self) -> DeletePublicIpv4PoolInput
fn clone(&self) -> DeletePublicIpv4PoolInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeletePublicIpv4PoolInput
impl Debug for DeletePublicIpv4PoolInput
impl StructuralPartialEq for DeletePublicIpv4PoolInput
Auto Trait Implementations§
impl Freeze for DeletePublicIpv4PoolInput
impl RefUnwindSafe for DeletePublicIpv4PoolInput
impl Send for DeletePublicIpv4PoolInput
impl Sync for DeletePublicIpv4PoolInput
impl Unpin for DeletePublicIpv4PoolInput
impl UnwindSafe for DeletePublicIpv4PoolInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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