[][src]Struct rusoto_redshift::ResizeProgressMessage

pub struct ResizeProgressMessage {
    pub avg_resize_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 import_tables_completed: Option<Vec<String>>,
    pub import_tables_in_progress: Option<Vec<String>>,
    pub import_tables_not_started: Option<Vec<String>>,
    pub progress_in_mega_bytes: Option<i64>,
    pub status: Option<String>,
    pub target_cluster_type: Option<String>,
    pub target_node_type: Option<String>,
    pub target_number_of_nodes: Option<i64>,
    pub total_resize_data_in_mega_bytes: Option<i64>,
}

Describes the result of a cluster resize operation.

Fields

The average rate of the resize operation over the last few minutes, measured in megabytes per second. After the resize operation completes, this value shows the average rate of the entire resize operation.

The amount of seconds that have elapsed since the resize operation began. After the resize operation completes, this value shows the total actual time, in seconds, for the resize operation.

The estimated time remaining, in seconds, until the resize operation is complete. This value is calculated based on the average resize rate and the estimated amount of data remaining to be processed. Once the resize operation is complete, this value will be 0.

The names of tables that have been completely imported .

Valid Values: List of table names.

The names of tables that are being currently imported.

Valid Values: List of table names.

The names of tables that have not been yet imported.

Valid Values: List of table names

While the resize operation is in progress, this value shows the current amount of data, in megabytes, that has been processed so far. When the resize operation is complete, this value shows the total amount of data, in megabytes, on the cluster, which may be more or less than TotalResizeDataInMegaBytes (the estimated total amount of data before resize).

The status of the resize operation.

Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED

The cluster type after the resize operation is complete.

Valid Values: multi-node | single-node

The node type that the cluster will have after the resize operation is complete.

The number of nodes that the cluster will have after the resize operation is complete.

The estimated total amount of data, in megabytes, on the cluster before the resize operation began.

Trait Implementations

impl Default for ResizeProgressMessage
[src]

Returns the "default value" for a type. Read more

impl PartialEq<ResizeProgressMessage> for ResizeProgressMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ResizeProgressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResizeProgressMessage
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

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

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self

impl<T> Erased for T