[][src]Struct rusoto_redshift::RestoreStatus

pub struct RestoreStatus {
    pub current_restore_rate_in_mega_bytes_per_second: Option<f64>,
    pub elapsed_time_in_seconds: Option<i64>,
    pub estimated_time_to_completion_in_seconds: Option<i64>,
    pub progress_in_mega_bytes: Option<i64>,
    pub snapshot_size_in_mega_bytes: Option<i64>,
    pub status: Option<String>,
}

Describes the status of a cluster restore action. Returns null if the cluster was not created by restoring a snapshot.

Fields

current_restore_rate_in_mega_bytes_per_second: Option<f64>

The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup. This field is only updated when you restore to DC2 and DS2 node types.

elapsed_time_in_seconds: Option<i64>

The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish. This field is only updated when you restore to DC2 and DS2 node types.

estimated_time_to_completion_in_seconds: Option<i64>

The estimate of the time remaining before the restore will complete. Returns 0 for a completed restore. This field is only updated when you restore to DC2 and DS2 node types.

progress_in_mega_bytes: Option<i64>

The number of megabytes that have been transferred from snapshot storage. This field is only updated when you restore to DC2 and DS2 node types.

snapshot_size_in_mega_bytes: Option<i64>

The size of the set of snapshot data used to restore the cluster. This field is only updated when you restore to DC2 and DS2 node types.

status: Option<String>

The status of the restore action. Returns starting, restoring, completed, or failed.

Trait Implementations

impl Clone for RestoreStatus[src]

impl Debug for RestoreStatus[src]

impl Default for RestoreStatus[src]

impl PartialEq<RestoreStatus> for RestoreStatus[src]

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