Struct aws_sdk_storagegateway::operation::associate_file_system::builders::AssociateFileSystemInputBuilder
source · #[non_exhaustive]pub struct AssociateFileSystemInputBuilder { /* private fields */ }Expand description
A builder for AssociateFileSystemInput.
Implementations§
source§impl AssociateFileSystemInputBuilder
impl AssociateFileSystemInputBuilder
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.
This field is required.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 get_user_name(&self) -> &Option<String>
pub fn get_user_name(&self) -> &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.
sourcepub fn password(self, input: impl Into<String>) -> Self
pub fn password(self, input: impl Into<String>) -> Self
The password of the user credential.
This field is required.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 get_password(&self) -> &Option<String>
pub fn get_password(&self) -> &Option<String>
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.
This field is required.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 get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
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 get_gateway_arn(&self) -> &Option<String>
pub fn get_gateway_arn(&self) -> &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.
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.
This field is required.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.
sourcepub fn get_location_arn(&self) -> &Option<String>
pub fn get_location_arn(&self) -> &Option<String>
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.
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 get_audit_destination_arn(&self) -> &Option<String>
pub fn get_audit_destination_arn(&self) -> &Option<String>
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 get_cache_attributes(&self) -> &Option<CacheAttributes>
pub fn get_cache_attributes(&self) -> &Option<CacheAttributes>
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.
sourcepub fn get_endpoint_network_configuration(
&self
) -> &Option<EndpointNetworkConfiguration>
pub fn get_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.
sourcepub fn build(self) -> Result<AssociateFileSystemInput, BuildError>
pub fn build(self) -> Result<AssociateFileSystemInput, BuildError>
Consumes the builder and constructs a AssociateFileSystemInput.
source§impl AssociateFileSystemInputBuilder
impl AssociateFileSystemInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<AssociateFileSystemOutput, SdkError<AssociateFileSystemError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<AssociateFileSystemOutput, SdkError<AssociateFileSystemError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for AssociateFileSystemInputBuilder
impl Clone for AssociateFileSystemInputBuilder
source§fn clone(&self) -> AssociateFileSystemInputBuilder
fn clone(&self) -> AssociateFileSystemInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for AssociateFileSystemInputBuilder
impl Default for AssociateFileSystemInputBuilder
source§fn default() -> AssociateFileSystemInputBuilder
fn default() -> AssociateFileSystemInputBuilder
source§impl PartialEq for AssociateFileSystemInputBuilder
impl PartialEq for AssociateFileSystemInputBuilder
source§fn eq(&self, other: &AssociateFileSystemInputBuilder) -> bool
fn eq(&self, other: &AssociateFileSystemInputBuilder) -> bool
self and other values to be equal, and is used
by ==.