[][src]Struct rusoto_fsx::UpdateFileSystemLustreConfiguration

pub struct UpdateFileSystemLustreConfiguration {
    pub auto_import_policy: Option<String>,
    pub automatic_backup_retention_days: Option<i64>,
    pub daily_automatic_backup_start_time: Option<String>,
    pub weekly_maintenance_start_time: Option<String>,
}

The configuration object for Amazon FSx for Lustre file systems used in the UpdateFileSystem operation.

Fields

auto_import_policy: Option<String>

(Optional) When you create your file system, your existing S3 objects appear as file and directory listings. Use this property to choose how Amazon FSx keeps your file and directory listing up to date as you add or modify objects in your linked S3 bucket. AutoImportPolicy can have the following values:

  • NONE - (Default) AutoImport is off. Amazon FSx only updates file and directory listings from the linked S3 bucket when the file system is created. FSx does not update the file and directory listing for any new or changed objects after choosing this option.

  • NEW - AutoImport is on. Amazon FSx automatically imports directory listings of any new objects added to the linked S3 bucket that do not currently exist in the FSx file system.

  • NEW_CHANGED - AutoImport is on. Amazon FSx automatically imports file and directory listings of any new objects added to the S3 bucket and any existing objects that are changed in the S3 bucket after you choose this option.

For more information, see Automatically import updates from your S3 bucket.

automatic_backup_retention_days: Option<i64>daily_automatic_backup_start_time: Option<String>weekly_maintenance_start_time: Option<String>

(Optional) The preferred start time to perform weekly maintenance, formatted d:HH:MM in the UTC time zone. d is the weekday number, from 1 through 7, beginning with Monday and ending with Sunday.

Trait Implementations

impl Clone for UpdateFileSystemLustreConfiguration[src]

impl Debug for UpdateFileSystemLustreConfiguration[src]

impl Default for UpdateFileSystemLustreConfiguration[src]

impl PartialEq<UpdateFileSystemLustreConfiguration> for UpdateFileSystemLustreConfiguration[src]

impl Serialize for UpdateFileSystemLustreConfiguration[src]

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