pub struct ReplaceNetworkAclAssociationRequest {
pub association_id: String,
pub dry_run: Option<bool>,
pub network_acl_id: String,
}Fields§
§association_id: StringThe ID of the current association between the original network ACL and the subnet.
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.
network_acl_id: StringThe ID of the new network ACL to associate with the subnet.
Trait Implementations§
Source§impl Clone for ReplaceNetworkAclAssociationRequest
impl Clone for ReplaceNetworkAclAssociationRequest
Source§fn clone(&self) -> ReplaceNetworkAclAssociationRequest
fn clone(&self) -> ReplaceNetworkAclAssociationRequest
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 ReplaceNetworkAclAssociationRequest
impl Default for ReplaceNetworkAclAssociationRequest
Source§fn default() -> ReplaceNetworkAclAssociationRequest
fn default() -> ReplaceNetworkAclAssociationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReplaceNetworkAclAssociationRequest
impl PartialEq for ReplaceNetworkAclAssociationRequest
Source§fn eq(&self, other: &ReplaceNetworkAclAssociationRequest) -> bool
fn eq(&self, other: &ReplaceNetworkAclAssociationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReplaceNetworkAclAssociationRequest
Auto Trait Implementations§
impl Freeze for ReplaceNetworkAclAssociationRequest
impl RefUnwindSafe for ReplaceNetworkAclAssociationRequest
impl Send for ReplaceNetworkAclAssociationRequest
impl Sync for ReplaceNetworkAclAssociationRequest
impl Unpin for ReplaceNetworkAclAssociationRequest
impl UnwindSafe for ReplaceNetworkAclAssociationRequest
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