pub struct UpdateFileSystemAssociationInput {
pub audit_destination_arn: Option<String>,
pub cache_attributes: Option<CacheAttributes>,
pub file_system_association_arn: String,
pub password: Option<String>,
pub user_name: Option<String>,
}Fields§
§audit_destination_arn: Option<String>The Amazon Resource Name (ARN) of the storage used for the audit logs.
cache_attributes: Option<CacheAttributes>§file_system_association_arn: StringThe Amazon Resource Name (ARN) of the file system association that you want to update.
password: Option<String>The password of the user credential.
user_name: Option<String>The user name of the user credential that has permission to access the root share D$ of the Amazon FSx file system. The user account must belong to the Amazon FSx delegated admin user group.
Trait Implementations§
Source§impl Clone for UpdateFileSystemAssociationInput
impl Clone for UpdateFileSystemAssociationInput
Source§fn clone(&self) -> UpdateFileSystemAssociationInput
fn clone(&self) -> UpdateFileSystemAssociationInput
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 UpdateFileSystemAssociationInput
impl Default for UpdateFileSystemAssociationInput
Source§fn default() -> UpdateFileSystemAssociationInput
fn default() -> UpdateFileSystemAssociationInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFileSystemAssociationInput
impl PartialEq for UpdateFileSystemAssociationInput
Source§fn eq(&self, other: &UpdateFileSystemAssociationInput) -> bool
fn eq(&self, other: &UpdateFileSystemAssociationInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateFileSystemAssociationInput
Auto Trait Implementations§
impl Freeze for UpdateFileSystemAssociationInput
impl RefUnwindSafe for UpdateFileSystemAssociationInput
impl Send for UpdateFileSystemAssociationInput
impl Sync for UpdateFileSystemAssociationInput
impl Unpin for UpdateFileSystemAssociationInput
impl UnwindSafe for UpdateFileSystemAssociationInput
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