[][src]Struct rusoto_redshift::OrderableClusterOption

pub struct OrderableClusterOption {
    pub availability_zones: Option<Vec<AvailabilityZone>>,
    pub cluster_type: Option<String>,
    pub cluster_version: Option<String>,
    pub node_type: Option<String>,
}

Describes an orderable cluster option.

Fields

availability_zones: Option<Vec<AvailabilityZone>>

A list of availability zones for the orderable cluster.

cluster_type: Option<String>

The cluster type, for example multi-node.

cluster_version: Option<String>

The version of the orderable cluster.

node_type: Option<String>

The node type for the orderable cluster.

Trait Implementations

impl Clone for OrderableClusterOption[src]

impl Debug for OrderableClusterOption[src]

impl Default for OrderableClusterOption[src]

impl PartialEq<OrderableClusterOption> for OrderableClusterOption[src]

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