[][src]Struct rusoto_fsx::UpdateFileSystemWindowsConfiguration

pub struct UpdateFileSystemWindowsConfiguration {
    pub automatic_backup_retention_days: Option<i64>,
    pub daily_automatic_backup_start_time: Option<String>,
    pub self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfigurationUpdates>,
    pub weekly_maintenance_start_time: Option<String>,
}

Updates the Microsoft Windows configuration for an existing Amazon FSx for Windows File Server file system. Amazon FSx overwrites existing properties with non-null values provided in the request. If you don't specify a non-null value for a property, that property is not updated.

Fields

automatic_backup_retention_days: Option<i64>

The number of days to retain automatic backups. Setting this to 0 disables automatic backups. You can retain automatic backups for a maximum of 35 days.

daily_automatic_backup_start_time: Option<String>

The preferred time to take daily automatic backups, in the UTC time zone.

self_managed_active_directory_configuration: Option<SelfManagedActiveDirectoryConfigurationUpdates>

The configuration Amazon FSx uses to join the Windows File Server instance to the self-managed Microsoft AD directory.

weekly_maintenance_start_time: Option<String>

The preferred time to perform weekly maintenance, in the UTC time zone.

Trait Implementations

impl Clone for UpdateFileSystemWindowsConfiguration[src]

impl Default for UpdateFileSystemWindowsConfiguration[src]

impl PartialEq<UpdateFileSystemWindowsConfiguration> for UpdateFileSystemWindowsConfiguration[src]

impl Debug for UpdateFileSystemWindowsConfiguration[src]

impl StructuralPartialEq for UpdateFileSystemWindowsConfiguration[src]

impl Serialize for UpdateFileSystemWindowsConfiguration[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