[][src]Struct rusoto_fsx::AdministrativeAction

pub struct AdministrativeAction {
    pub administrative_action_type: Option<String>,
    pub failure_details: Option<AdministrativeActionFailureDetails>,
    pub progress_percent: Option<i64>,
    pub request_time: Option<f64>,
    pub status: Option<String>,
    pub target_file_system_values: Option<FileSystem>,
}

Describes a specific Amazon FSx Administrative Action for the current Windows file system.

Fields

administrative_action_type: Option<String>failure_details: Option<AdministrativeActionFailureDetails>progress_percent: Option<i64>

Provides the percent complete of a STORAGE_OPTIMIZATION administrative action.

request_time: Option<f64>

Time that the administrative action request was received.

status: Option<String>

Describes the status of the administrative action, as follows:

  • FAILED - Amazon FSx failed to process the administrative action successfully.

  • INPROGRESS - Amazon FSx is processing the administrative action.

  • PENDING - Amazon FSx is waiting to process the administrative action.

  • COMPLETED - Amazon FSx has finished processing the administrative task.

  • UPDATEDOPTIMIZING - For a storage capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage optimization process. For more information, see Managing Storage Capacity.

target_file_system_values: Option<FileSystem>

Describes the target StorageCapacity or ThroughputCapacity value provided in the UpdateFileSystem operation. Returned for FILE_SYSTEM_UPDATE administrative actions.

Trait Implementations

impl Clone for AdministrativeAction[src]

impl Debug for AdministrativeAction[src]

impl Default for AdministrativeAction[src]

impl<'de> Deserialize<'de> for AdministrativeAction[src]

impl PartialEq<AdministrativeAction> for AdministrativeAction[src]

impl StructuralPartialEq for AdministrativeAction[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.