[][src]Struct rusoto_fsx::CreateFileSystemFromBackupRequest

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>,
}

The request object for the CreateFileSystemFromBackup operation.

Fields

backup_id: Stringclient_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 SSD to use solid state drive storage. Supported on all Windows deployment types.

  • Set to HDD to use hard disk drive storage. Supported on SINGLEAZ2 and MULTIAZ1 Windows 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.

tags: Option<Vec<Tag>>

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

impl Clone for CreateFileSystemFromBackupRequest[src]

impl Debug for CreateFileSystemFromBackupRequest[src]

impl Default for CreateFileSystemFromBackupRequest[src]

impl PartialEq<CreateFileSystemFromBackupRequest> for CreateFileSystemFromBackupRequest[src]

impl Serialize for CreateFileSystemFromBackupRequest[src]

impl StructuralPartialEq for CreateFileSystemFromBackupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.