[][src]Struct rusoto_redshift::NodeConfigurationOption

pub struct NodeConfigurationOption {
    pub estimated_disk_utilization_percent: Option<f64>,
    pub mode: Option<String>,
    pub node_type: Option<String>,
    pub number_of_nodes: Option<i64>,
}

A list of node configurations.

Fields

estimated_disk_utilization_percent: Option<f64>

The estimated disk utilizaton percentage.

mode: Option<String>

The category of the node configuration recommendation.

node_type: Option<String>

The node type, such as, "ds2.8xlarge".

number_of_nodes: Option<i64>

The number of nodes.

Trait Implementations

impl Clone for NodeConfigurationOption[src]

impl Debug for NodeConfigurationOption[src]

impl Default for NodeConfigurationOption[src]

impl PartialEq<NodeConfigurationOption> for NodeConfigurationOption[src]

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