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 ==.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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more