#[non_exhaustive]pub struct AssociateFileSystemInput {
pub user_name: Option<String>,
pub password: Option<String>,
pub client_token: Option<String>,
pub gateway_arn: Option<String>,
pub location_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
pub audit_destination_arn: Option<String>,
pub cache_attributes: Option<CacheAttributes>,
pub endpoint_network_configuration: Option<EndpointNetworkConfiguration>,
}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.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.
client_token: Option<String>A unique string value that you supply that is used by the FSx File Gateway to ensure idempotent file system association creation.
gateway_arn: Option<String>The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
location_arn: Option<String>The Amazon Resource Name (ARN) of the Amazon FSx file system to associate with the FSx File Gateway.
A list of up to 50 tags that can be assigned to the file system association. Each tag is a key-value pair.
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.
endpoint_network_configuration: Option<EndpointNetworkConfiguration>Specifies the network configuration information for the gateway associated with the Amazon FSx file system.
If multiple file systems are associated with this gateway, this parameter's IpAddresses field is required.
Implementations§
source§impl AssociateFileSystemInput
impl AssociateFileSystemInput
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 client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique string value that you supply that is used by the FSx File Gateway to ensure idempotent file system association creation.
sourcepub fn gateway_arn(&self) -> Option<&str>
pub fn gateway_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.
sourcepub fn location_arn(&self) -> Option<&str>
pub fn location_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Amazon FSx file system to associate with the FSx File Gateway.
A list of up to 50 tags that can be assigned to the file system association. Each tag is a key-value pair.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
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.
sourcepub fn endpoint_network_configuration(
&self,
) -> Option<&EndpointNetworkConfiguration>
pub fn endpoint_network_configuration( &self, ) -> Option<&EndpointNetworkConfiguration>
Specifies the network configuration information for the gateway associated with the Amazon FSx file system.
If multiple file systems are associated with this gateway, this parameter's IpAddresses field is required.
source§impl AssociateFileSystemInput
impl AssociateFileSystemInput
sourcepub fn builder() -> AssociateFileSystemInputBuilder
pub fn builder() -> AssociateFileSystemInputBuilder
Creates a new builder-style object to manufacture AssociateFileSystemInput.
Trait Implementations§
source§impl Clone for AssociateFileSystemInput
impl Clone for AssociateFileSystemInput
source§fn clone(&self) -> AssociateFileSystemInput
fn clone(&self) -> AssociateFileSystemInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AssociateFileSystemInput
impl Debug for AssociateFileSystemInput
source§impl PartialEq for AssociateFileSystemInput
impl PartialEq for AssociateFileSystemInput
source§fn eq(&self, other: &AssociateFileSystemInput) -> bool
fn eq(&self, other: &AssociateFileSystemInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AssociateFileSystemInput
Auto Trait Implementations§
impl Freeze for AssociateFileSystemInput
impl RefUnwindSafe for AssociateFileSystemInput
impl Send for AssociateFileSystemInput
impl Sync for AssociateFileSystemInput
impl Unpin for AssociateFileSystemInput
impl UnwindSafe for AssociateFileSystemInput
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