pub struct AssociateFileSystem { /* private fields */ }
Expand description
Fluent builder constructing a request to AssociateFileSystem
.
Associate an Amazon FSx file system with the FSx File Gateway. After the association process is complete, the file shares on the Amazon FSx file system are available for access through the gateway. This operation only supports the FSx File Gateway type.
Implementations§
source§impl AssociateFileSystem
impl AssociateFileSystem
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<AssociateFileSystem, AwsResponseRetryClassifier>, SdkError<AssociateFileSystemError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<AssociateFileSystem, AwsResponseRetryClassifier>, SdkError<AssociateFileSystemError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<AssociateFileSystemOutput, SdkError<AssociateFileSystemError>>
pub async fn send(
self
) -> Result<AssociateFileSystemOutput, SdkError<AssociateFileSystemError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn user_name(self, input: impl Into<String>) -> Self
pub fn user_name(self, input: impl Into<String>) -> Self
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 set_user_name(self, input: Option<String>) -> Self
pub fn set_user_name(self, input: Option<String>) -> Self
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 set_password(self, input: Option<String>) -> Self
pub fn set_password(self, input: Option<String>) -> Self
The password of the user credential.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique string value that you supply that is used by the FSx File Gateway to ensure idempotent file system association creation.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
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, input: impl Into<String>) -> Self
pub fn gateway_arn(self, input: impl Into<String>) -> Self
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 set_gateway_arn(self, input: Option<String>) -> Self
pub fn set_gateway_arn(self, input: Option<String>) -> Self
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, input: impl Into<String>) -> Self
pub fn location_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon FSx file system to associate with the FSx File Gateway.
sourcepub fn set_location_arn(self, input: Option<String>) -> Self
pub fn set_location_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon FSx file system to associate with the FSx File Gateway.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
A list of up to 50 tags that can be assigned to the file system association. Each tag is a key-value pair.
A list of up to 50 tags that can be assigned to the file system association. Each tag is a key-value pair.
sourcepub fn audit_destination_arn(self, input: impl Into<String>) -> Self
pub fn audit_destination_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the storage used for the audit logs.
sourcepub fn set_audit_destination_arn(self, input: Option<String>) -> Self
pub fn set_audit_destination_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the storage used for the audit logs.
sourcepub fn cache_attributes(self, input: CacheAttributes) -> Self
pub fn cache_attributes(self, input: CacheAttributes) -> Self
The refresh cache information for the file share or FSx file systems.
sourcepub fn set_cache_attributes(self, input: Option<CacheAttributes>) -> Self
pub fn set_cache_attributes(self, input: Option<CacheAttributes>) -> Self
The refresh cache information for the file share or FSx file systems.
sourcepub fn endpoint_network_configuration(
self,
input: EndpointNetworkConfiguration
) -> Self
pub fn endpoint_network_configuration(
self,
input: EndpointNetworkConfiguration
) -> Self
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.
sourcepub fn set_endpoint_network_configuration(
self,
input: Option<EndpointNetworkConfiguration>
) -> Self
pub fn set_endpoint_network_configuration(
self,
input: Option<EndpointNetworkConfiguration>
) -> Self
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.
Trait Implementations§
source§impl Clone for AssociateFileSystem
impl Clone for AssociateFileSystem
source§fn clone(&self) -> AssociateFileSystem
fn clone(&self) -> AssociateFileSystem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more