#[non_exhaustive]pub struct ReleaseIpamPoolAllocationInput { /* private fields */ }
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
.
source§impl ReleaseIpamPoolAllocationInput
impl ReleaseIpamPoolAllocationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReleaseIpamPoolAllocation, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ReleaseIpamPoolAllocation, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ReleaseIpamPoolAllocation
>
Trait Implementations§
source§impl Clone for ReleaseIpamPoolAllocationInput
impl Clone for ReleaseIpamPoolAllocationInput
source§fn clone(&self) -> ReleaseIpamPoolAllocationInput
fn clone(&self) -> ReleaseIpamPoolAllocationInput
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<ReleaseIpamPoolAllocationInput> for ReleaseIpamPoolAllocationInput
impl PartialEq<ReleaseIpamPoolAllocationInput> for ReleaseIpamPoolAllocationInput
source§fn eq(&self, other: &ReleaseIpamPoolAllocationInput) -> bool
fn eq(&self, other: &ReleaseIpamPoolAllocationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReleaseIpamPoolAllocationInput
Auto Trait Implementations§
impl RefUnwindSafe for ReleaseIpamPoolAllocationInput
impl Send for ReleaseIpamPoolAllocationInput
impl Sync for ReleaseIpamPoolAllocationInput
impl Unpin for ReleaseIpamPoolAllocationInput
impl UnwindSafe for ReleaseIpamPoolAllocationInput
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