Struct aws_sdk_fsx::input::AssociateFileSystemAliasesInput [−][src]
#[non_exhaustive]pub struct AssociateFileSystemAliasesInput {
pub client_request_token: Option<String>,
pub file_system_id: Option<String>,
pub aliases: Option<Vec<String>>,
}Expand description
The request object specifying one or more DNS alias names to associate with an Amazon FSx for Windows File Server file system.
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.client_request_token: Option<String>(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
file_system_id: Option<String>Specifies the file system with which you want to associate one or more DNS aliases.
aliases: Option<Vec<String>>An array of one or more DNS alias names to associate with the file system. The alias name has to comply with the following formatting requirements:
-
Formatted as a fully-qualified domain name (FQDN),
hostname.domain, for example,accounting.corp.example.com. -
Can contain alphanumeric characters and the hyphen (-).
-
Cannot start or end with a hyphen.
-
Can start with a numeric.
For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateFileSystemAliases, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<AssociateFileSystemAliases, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<AssociateFileSystemAliases>
Creates a new builder-style object to manufacture AssociateFileSystemAliasesInput
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
Specifies the file system with which you want to associate one or more DNS aliases.
An array of one or more DNS alias names to associate with the file system. The alias name has to comply with the following formatting requirements:
-
Formatted as a fully-qualified domain name (FQDN),
hostname.domain, for example,accounting.corp.example.com. -
Can contain alphanumeric characters and the hyphen (-).
-
Cannot start or end with a hyphen.
-
Can start with a numeric.
For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for AssociateFileSystemAliasesInput
impl Sync for AssociateFileSystemAliasesInput
impl Unpin for AssociateFileSystemAliasesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more