[][src]Struct rusoto_fsx::CreateFileSystemWindowsConfiguration

pub struct CreateFileSystemWindowsConfiguration {
    pub active_directory_id: Option<String>,
    pub automatic_backup_retention_days: Option<i64>,
    pub copy_tags_to_backups: Option<bool>,
    pub daily_automatic_backup_start_time: Option<String>,
    pub deployment_type: Option<String>,
    pub preferred_subnet_id: Option<String>,
    pub self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfiguration>,
    pub throughput_capacity: i64,
    pub weekly_maintenance_start_time: Option<String>,
}

The configuration object for the Microsoft Windows file system used in CreateFileSystem and CreateFileSystemFromBackup operations.

Fields

active_directory_id: Option<String>

The ID for an existing AWS Managed Microsoft Active Directory (AD) instance that the file system should join when it's created.

automatic_backup_retention_days: Option<i64>

The number of days to retain automatic backups. The default is to retain backups for 7 days. Setting this value to 0 disables the creation of automatic backups. The maximum retention period for backups is 35 days.

copy_tags_to_backups: Option<bool>

A boolean flag indicating whether tags for the file system should be copied to backups. This value defaults to false. If it's set to true, all tags for the file system are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups.

daily_automatic_backup_start_time: Option<String>

The preferred time to take daily automatic backups, formatted HH:MM in the UTC time zone.

deployment_type: Option<String>

Specifies the file system deployment type, valid values are the following:

  • MULTI_AZ_1 - Deploys a high availability file system that is configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability. You can only deploy a Multi-AZ file system in AWS Regions that have a minimum of three Availability Zones.

  • SINGLE_AZ_1 - (Default) Choose to deploy a file system that is configured for single AZ redundancy.

To learn more about high availability Multi-AZ file systems, see High Availability for Amazon FSx for Windows File Server.

preferred_subnet_id: Option<String>

Required when DeploymentType is set to MULTI_AZ_1. This specifies the subnet in which you want the preferred file server to be located. For in-AWS applications, we recommend that you launch your clients in the same Availability Zone (AZ) as your preferred file server to reduce cross-AZ data transfer costs and minimize latency.

self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfiguration>throughput_capacity: i64

The throughput of an Amazon FSx file system, measured in megabytes per second, in 2 to the nth increments, between 2^3 (8) and 2^11 (2048).

weekly_maintenance_start_time: Option<String>

The preferred start time to perform weekly maintenance, formatted d:HH:MM in the UTC time zone.

Trait Implementations

impl Clone for CreateFileSystemWindowsConfiguration[src]

impl Debug for CreateFileSystemWindowsConfiguration[src]

impl Default for CreateFileSystemWindowsConfiguration[src]

impl PartialEq<CreateFileSystemWindowsConfiguration> for CreateFileSystemWindowsConfiguration[src]

impl Serialize for CreateFileSystemWindowsConfiguration[src]

impl StructuralPartialEq for CreateFileSystemWindowsConfiguration[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.