pub struct DeleteNetworkAclEntryRequest {
pub dry_run: Option<bool>,
pub egress: bool,
pub network_acl_id: String,
pub rule_number: i64,
}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.
egress: boolIndicates whether the rule is an egress rule.
network_acl_id: StringThe ID of the network ACL.
rule_number: i64The rule number of the entry to delete.
Trait Implementations§
Source§impl Clone for DeleteNetworkAclEntryRequest
impl Clone for DeleteNetworkAclEntryRequest
Source§fn clone(&self) -> DeleteNetworkAclEntryRequest
fn clone(&self) -> DeleteNetworkAclEntryRequest
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 DeleteNetworkAclEntryRequest
impl Debug for DeleteNetworkAclEntryRequest
Source§impl Default for DeleteNetworkAclEntryRequest
impl Default for DeleteNetworkAclEntryRequest
Source§fn default() -> DeleteNetworkAclEntryRequest
fn default() -> DeleteNetworkAclEntryRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteNetworkAclEntryRequest
impl PartialEq for DeleteNetworkAclEntryRequest
Source§fn eq(&self, other: &DeleteNetworkAclEntryRequest) -> bool
fn eq(&self, other: &DeleteNetworkAclEntryRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteNetworkAclEntryRequest
Auto Trait Implementations§
impl Freeze for DeleteNetworkAclEntryRequest
impl RefUnwindSafe for DeleteNetworkAclEntryRequest
impl Send for DeleteNetworkAclEntryRequest
impl Sync for DeleteNetworkAclEntryRequest
impl Unpin for DeleteNetworkAclEntryRequest
impl UnwindSafe for DeleteNetworkAclEntryRequest
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