pub struct DisassociateAddressRequest {
pub association_id: Option<String>,
pub dry_run: Option<bool>,
pub public_ip: Option<String>,
}Fields§
§association_id: Option<String>[EC2-VPC] The association ID. Required for EC2-VPC.
dry_run: Option<bool>Checks 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.
public_ip: Option<String>[EC2-Classic] The Elastic IP address. Required for EC2-Classic.
Trait Implementations§
Source§impl Clone for DisassociateAddressRequest
impl Clone for DisassociateAddressRequest
Source§fn clone(&self) -> DisassociateAddressRequest
fn clone(&self) -> DisassociateAddressRequest
Returns a duplicate 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 Debug for DisassociateAddressRequest
impl Debug for DisassociateAddressRequest
Source§impl Default for DisassociateAddressRequest
impl Default for DisassociateAddressRequest
Source§fn default() -> DisassociateAddressRequest
fn default() -> DisassociateAddressRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DisassociateAddressRequest
Auto Trait Implementations§
impl Freeze for DisassociateAddressRequest
impl RefUnwindSafe for DisassociateAddressRequest
impl Send for DisassociateAddressRequest
impl Sync for DisassociateAddressRequest
impl Unpin for DisassociateAddressRequest
impl UnwindSafe for DisassociateAddressRequest
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