pub struct CreateFileSystemFromBackupRequest {
pub backup_id: String,
pub client_request_token: Option<String>,
pub lustre_configuration: Option<CreateFileSystemLustreConfiguration>,
pub security_group_ids: Option<Vec<String>>,
pub storage_type: Option<String>,
pub subnet_ids: Vec<String>,
pub tags: Option<Vec<Tag>>,
pub windows_configuration: Option<CreateFileSystemWindowsConfiguration>,
}Expand description
The request object for the CreateFileSystemFromBackup operation.
Fields§
§backup_id: String§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 AWS Command Line Interface (AWS CLI) or an AWS SDK.
lustre_configuration: Option<CreateFileSystemLustreConfiguration>§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.
storage_type: Option<String>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 onSINGLEAZ2andMULTIAZ1Windows 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.
subnet_ids: 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.
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.
Trait Implementations§
Source§impl Clone for CreateFileSystemFromBackupRequest
impl Clone for CreateFileSystemFromBackupRequest
Source§fn clone(&self) -> CreateFileSystemFromBackupRequest
fn clone(&self) -> CreateFileSystemFromBackupRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for CreateFileSystemFromBackupRequest
impl Default for CreateFileSystemFromBackupRequest
Source§fn default() -> CreateFileSystemFromBackupRequest
fn default() -> CreateFileSystemFromBackupRequest
Source§impl PartialEq for CreateFileSystemFromBackupRequest
impl PartialEq for CreateFileSystemFromBackupRequest
Source§fn eq(&self, other: &CreateFileSystemFromBackupRequest) -> bool
fn eq(&self, other: &CreateFileSystemFromBackupRequest) -> bool
self and other values to be equal, and is used by ==.