#[non_exhaustive]pub struct DeleteIpamPoolInput {
pub dry_run: Option<bool>,
pub ipam_pool_id: Option<String>,
pub cascade: Option<bool>,
}
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
.
ipam_pool_id: Option<String>
The ID of the pool to delete.
cascade: Option<bool>
Enables you to quickly delete an IPAM pool and all resources within that pool, including provisioned CIDRs, allocations, and other pools.
You can only use this option to delete pools in the private scope or pools in the public scope with a source resource. A source resource is a resource used to provision CIDRs to a resource planning pool.
Implementations§
source§impl DeleteIpamPoolInput
impl DeleteIpamPoolInput
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 ipam_pool_id(&self) -> Option<&str>
pub fn ipam_pool_id(&self) -> Option<&str>
The ID of the pool to delete.
sourcepub fn cascade(&self) -> Option<bool>
pub fn cascade(&self) -> Option<bool>
Enables you to quickly delete an IPAM pool and all resources within that pool, including provisioned CIDRs, allocations, and other pools.
You can only use this option to delete pools in the private scope or pools in the public scope with a source resource. A source resource is a resource used to provision CIDRs to a resource planning pool.
source§impl DeleteIpamPoolInput
impl DeleteIpamPoolInput
sourcepub fn builder() -> DeleteIpamPoolInputBuilder
pub fn builder() -> DeleteIpamPoolInputBuilder
Creates a new builder-style object to manufacture DeleteIpamPoolInput
.
Trait Implementations§
source§impl Clone for DeleteIpamPoolInput
impl Clone for DeleteIpamPoolInput
source§fn clone(&self) -> DeleteIpamPoolInput
fn clone(&self) -> DeleteIpamPoolInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteIpamPoolInput
impl Debug for DeleteIpamPoolInput
source§impl PartialEq for DeleteIpamPoolInput
impl PartialEq for DeleteIpamPoolInput
source§fn eq(&self, other: &DeleteIpamPoolInput) -> bool
fn eq(&self, other: &DeleteIpamPoolInput) -> bool
self
and other
values to be equal, and is used
by ==
.