Struct aws_sdk_fsx::input::CreateFileSystemFromBackupInput [−][src]
#[non_exhaustive]pub struct CreateFileSystemFromBackupInput {
pub backup_id: Option<String>,
pub client_request_token: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub security_group_ids: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
pub windows_configuration: Option<CreateFileSystemWindowsConfiguration>,
pub lustre_configuration: Option<CreateFileSystemLustreConfiguration>,
pub storage_type: Option<StorageType>,
pub kms_key_id: Option<String>,
pub file_system_type_version: Option<String>,
}Expand description
The request object for the CreateFileSystemFromBackup
operation.
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.backup_id: Option<String>The ID of the source backup. Specifies the backup you are copying.
client_request_token: Option<String>A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
subnet_ids: Option<Vec<String>>Specifies the IDs of the subnets that the file system will be accessible from. For Windows MULTI_AZ_1
file system deployment types, provide exactly two subnet IDs, one for the preferred file server
and one for the standby file server. You specify one of these subnets as the preferred subnet
using the WindowsConfiguration > PreferredSubnetID property.
For Windows SINGLE_AZ_1 and SINGLE_AZ_2 deployment
types and Lustre file systems, provide exactly one subnet ID.
The file server is launched in that subnet's Availability Zone.
security_group_ids: Option<Vec<String>>A list of IDs for the security groups that apply to the specified network interfaces created for file system access. These security groups apply to all network interfaces. This value isn't returned in later DescribeFileSystem requests.
The tags to be applied to the file system at file system creation. The key value of
the Name tag appears in the console as the file system
name.
windows_configuration: Option<CreateFileSystemWindowsConfiguration>The configuration for this Microsoft Windows file system.
lustre_configuration: Option<CreateFileSystemLustreConfiguration>The Lustre configuration for the file system being created.
storage_type: Option<StorageType>Sets the storage type for the Windows file system you're creating from a backup.
Valid values are SSD and HDD.
-
Set to
SSDto use solid state drive storage. Supported on all Windows deployment types. -
Set to
HDDto use hard disk drive storage. Supported onSINGLE_AZ_2andMULTI_AZ_1Windows file system deployment types.
Default value is SSD.
HDD and SSD storage types have different minimum storage capacity requirements. A restored file system's storage capacity is tied to the file system that was backed up. You can create a file system that uses HDD storage from a backup of a file system that used SSD storage only if the original SSD file system had a storage capacity of at least 2000 GiB.
kms_key_id: Option<String>The ID of the Key Management Service (KMS) key used to encrypt the file system's data
for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and
Amazon FSx for Lustre PERSISTENT_1 file systems at rest. If not specified, the Amazon FSx
managed key is used. The Amazon FSx for Lustre SCRATCH_1 and SCRATCH_2 file systems
are always encrypted at rest using Amazon FSx managed keys. For more information, see Encrypt
in the Key Management Service API Reference.
file_system_type_version: Option<String>Sets the version for the Amazon FSx for Lustre file system you're creating from a backup.
Valid values are 2.10 and 2.12.
You don't need to specify FileSystemTypeVersion because it will
be applied using the backup's FileSystemTypeVersion setting.
If you choose to specify FileSystemTypeVersion when creating from backup, the
value must match the backup's FileSystemTypeVersion setting.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateFileSystemFromBackup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<CreateFileSystemFromBackup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateFileSystemFromBackup>
Creates a new builder-style object to manufacture CreateFileSystemFromBackupInput
The ID of the source backup. Specifies the backup you are copying.
A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent creation. This string is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
Specifies the IDs of the subnets that the file system will be accessible from. For Windows MULTI_AZ_1
file system deployment types, provide exactly two subnet IDs, one for the preferred file server
and one for the standby file server. You specify one of these subnets as the preferred subnet
using the WindowsConfiguration > PreferredSubnetID property.
For Windows SINGLE_AZ_1 and SINGLE_AZ_2 deployment
types and Lustre file systems, provide exactly one subnet ID.
The file server is launched in that subnet's Availability Zone.
A list of IDs for the security groups that apply to the specified network interfaces created for file system access. These security groups apply to all network interfaces. This value isn't returned in later DescribeFileSystem requests.
The tags to be applied to the file system at file system creation. The key value of
the Name tag appears in the console as the file system
name.
The configuration for this Microsoft Windows file system.
The Lustre configuration for the file system being created.
Sets the storage type for the Windows file system you're creating from a backup.
Valid values are SSD and HDD.
-
Set to
SSDto use solid state drive storage. Supported on all Windows deployment types. -
Set to
HDDto use hard disk drive storage. Supported onSINGLE_AZ_2andMULTI_AZ_1Windows file system deployment types.
Default value is SSD.
HDD and SSD storage types have different minimum storage capacity requirements. A restored file system's storage capacity is tied to the file system that was backed up. You can create a file system that uses HDD storage from a backup of a file system that used SSD storage only if the original SSD file system had a storage capacity of at least 2000 GiB.
The ID of the Key Management Service (KMS) key used to encrypt the file system's data
for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and
Amazon FSx for Lustre PERSISTENT_1 file systems at rest. If not specified, the Amazon FSx
managed key is used. The Amazon FSx for Lustre SCRATCH_1 and SCRATCH_2 file systems
are always encrypted at rest using Amazon FSx managed keys. For more information, see Encrypt
in the Key Management Service API Reference.
Sets the version for the Amazon FSx for Lustre file system you're creating from a backup.
Valid values are 2.10 and 2.12.
You don't need to specify FileSystemTypeVersion because it will
be applied using the backup's FileSystemTypeVersion setting.
If you choose to specify FileSystemTypeVersion when creating from backup, the
value must match the backup's FileSystemTypeVersion setting.
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 CreateFileSystemFromBackupInput
impl Sync for CreateFileSystemFromBackupInput
impl Unpin for CreateFileSystemFromBackupInput
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