Struct aws_sdk_storagegateway::operation::update_file_system_association::UpdateFileSystemAssociationInput
source · #[non_exhaustive]pub struct UpdateFileSystemAssociationInput {
pub file_system_association_arn: Option<String>,
pub user_name: Option<String>,
pub password: Option<String>,
pub audit_destination_arn: Option<String>,
pub cache_attributes: Option<CacheAttributes>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.file_system_association_arn: Option<String>The Amazon Resource Name (ARN) of the file system association that you want to update.
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.
password: Option<String>The password of the user credential.
audit_destination_arn: Option<String>The Amazon Resource Name (ARN) of the storage used for the audit logs.
cache_attributes: Option<CacheAttributes>The refresh cache information for the file share or FSx file systems.
Implementations§
source§impl UpdateFileSystemAssociationInput
impl UpdateFileSystemAssociationInput
sourcepub fn file_system_association_arn(&self) -> Option<&str>
pub fn file_system_association_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the file system association that you want to update.
sourcepub fn user_name(&self) -> Option<&str>
pub fn user_name(&self) -> Option<&str>
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.
sourcepub fn audit_destination_arn(&self) -> Option<&str>
pub fn audit_destination_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the storage used for the audit logs.
sourcepub fn cache_attributes(&self) -> Option<&CacheAttributes>
pub fn cache_attributes(&self) -> Option<&CacheAttributes>
The refresh cache information for the file share or FSx file systems.
source§impl UpdateFileSystemAssociationInput
impl UpdateFileSystemAssociationInput
sourcepub fn builder() -> UpdateFileSystemAssociationInputBuilder
pub fn builder() -> UpdateFileSystemAssociationInputBuilder
Creates a new builder-style object to manufacture UpdateFileSystemAssociationInput.
Trait Implementations§
source§impl Clone for UpdateFileSystemAssociationInput
impl Clone for UpdateFileSystemAssociationInput
source§fn clone(&self) -> UpdateFileSystemAssociationInput
fn clone(&self) -> UpdateFileSystemAssociationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateFileSystemAssociationInput
impl PartialEq for UpdateFileSystemAssociationInput
source§fn eq(&self, other: &UpdateFileSystemAssociationInput) -> bool
fn eq(&self, other: &UpdateFileSystemAssociationInput) -> bool
self and other values to be equal, and is used
by ==.