[][src]Struct rusoto_fsx::CreateFileSystemFromBackupRequest

pub struct CreateFileSystemFromBackupRequest {
    pub backup_id: String,
    pub client_request_token: Option<String>,
    pub security_group_ids: Option<Vec<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>

(Optional) 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.

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 describe requests.

subnet_ids: Vec<String>

A list of IDs for the subnets that the file system will be accessible from. Currently, you can specify only one subnet. The file server is also 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, 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.