pub struct DeleteNetworkInterfacePermissionRequest {
pub dry_run: Option<bool>,
pub force: Option<bool>,
pub network_interface_permission_id: String,
}Expand description
Contains the parameters for DeleteNetworkInterfacePermission.
Fields§
§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.
force: Option<bool>Specify true to remove the permission even if the network interface is attached to an instance.
network_interface_permission_id: StringThe ID of the network interface permission.
Trait Implementations§
Source§impl Clone for DeleteNetworkInterfacePermissionRequest
impl Clone for DeleteNetworkInterfacePermissionRequest
Source§fn clone(&self) -> DeleteNetworkInterfacePermissionRequest
fn clone(&self) -> DeleteNetworkInterfacePermissionRequest
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 Default for DeleteNetworkInterfacePermissionRequest
impl Default for DeleteNetworkInterfacePermissionRequest
Source§fn default() -> DeleteNetworkInterfacePermissionRequest
fn default() -> DeleteNetworkInterfacePermissionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteNetworkInterfacePermissionRequest
impl PartialEq for DeleteNetworkInterfacePermissionRequest
Source§fn eq(&self, other: &DeleteNetworkInterfacePermissionRequest) -> bool
fn eq(&self, other: &DeleteNetworkInterfacePermissionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteNetworkInterfacePermissionRequest
Auto Trait Implementations§
impl Freeze for DeleteNetworkInterfacePermissionRequest
impl RefUnwindSafe for DeleteNetworkInterfacePermissionRequest
impl Send for DeleteNetworkInterfacePermissionRequest
impl Sync for DeleteNetworkInterfacePermissionRequest
impl Unpin for DeleteNetworkInterfacePermissionRequest
impl UnwindSafe for DeleteNetworkInterfacePermissionRequest
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