pub struct ModifyMountTargetSecurityGroupsRequest {
pub mount_target_id: String,
pub security_groups: Option<Vec<String>>,
}
Expand description
Fields§
§mount_target_id: String
The ID of the mount target whose security groups you want to modify.
security_groups: Option<Vec<String>>
An array of up to five VPC security group IDs.
Trait Implementations§
Source§impl Clone for ModifyMountTargetSecurityGroupsRequest
impl Clone for ModifyMountTargetSecurityGroupsRequest
Source§fn clone(&self) -> ModifyMountTargetSecurityGroupsRequest
fn clone(&self) -> ModifyMountTargetSecurityGroupsRequest
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 ModifyMountTargetSecurityGroupsRequest
impl Default for ModifyMountTargetSecurityGroupsRequest
Source§fn default() -> ModifyMountTargetSecurityGroupsRequest
fn default() -> ModifyMountTargetSecurityGroupsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModifyMountTargetSecurityGroupsRequest
impl PartialEq for ModifyMountTargetSecurityGroupsRequest
Source§fn eq(&self, other: &ModifyMountTargetSecurityGroupsRequest) -> bool
fn eq(&self, other: &ModifyMountTargetSecurityGroupsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyMountTargetSecurityGroupsRequest
Auto Trait Implementations§
impl Freeze for ModifyMountTargetSecurityGroupsRequest
impl RefUnwindSafe for ModifyMountTargetSecurityGroupsRequest
impl Send for ModifyMountTargetSecurityGroupsRequest
impl Sync for ModifyMountTargetSecurityGroupsRequest
impl Unpin for ModifyMountTargetSecurityGroupsRequest
impl UnwindSafe for ModifyMountTargetSecurityGroupsRequest
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