#[non_exhaustive]pub struct ReleaseIpamPoolAllocationInput {
pub dry_run: Option<bool>,
pub ipam_pool_id: Option<String>,
pub cidr: Option<String>,
pub ipam_pool_allocation_id: 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
.
ipam_pool_id: Option<String>
The ID of the IPAM pool which contains the allocation you want to release.
cidr: Option<String>
The CIDR of the allocation you want to release.
ipam_pool_allocation_id: Option<String>
The ID of the allocation.
Implementations§
source§impl ReleaseIpamPoolAllocationInput
impl ReleaseIpamPoolAllocationInput
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 IPAM pool which contains the allocation you want to release.
sourcepub fn ipam_pool_allocation_id(&self) -> Option<&str>
pub fn ipam_pool_allocation_id(&self) -> Option<&str>
The ID of the allocation.
source§impl ReleaseIpamPoolAllocationInput
impl ReleaseIpamPoolAllocationInput
sourcepub fn builder() -> ReleaseIpamPoolAllocationInputBuilder
pub fn builder() -> ReleaseIpamPoolAllocationInputBuilder
Creates a new builder-style object to manufacture ReleaseIpamPoolAllocationInput
.
Trait Implementations§
source§impl Clone for ReleaseIpamPoolAllocationInput
impl Clone for ReleaseIpamPoolAllocationInput
source§fn clone(&self) -> ReleaseIpamPoolAllocationInput
fn clone(&self) -> ReleaseIpamPoolAllocationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ReleaseIpamPoolAllocationInput> for ReleaseIpamPoolAllocationInput
impl PartialEq<ReleaseIpamPoolAllocationInput> for ReleaseIpamPoolAllocationInput
source§fn eq(&self, other: &ReleaseIpamPoolAllocationInput) -> bool
fn eq(&self, other: &ReleaseIpamPoolAllocationInput) -> bool
self
and other
values to be equal, and is used
by ==
.