[][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 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.

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 Default for CreateFileSystemWindowsConfiguration[src]

impl PartialEq<CreateFileSystemWindowsConfiguration> for CreateFileSystemWindowsConfiguration[src]

impl Debug for CreateFileSystemWindowsConfiguration[src]

impl StructuralPartialEq for CreateFileSystemWindowsConfiguration[src]

impl Serialize for CreateFileSystemWindowsConfiguration[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self