[][src]Struct rusoto_redshift::ClusterParameterGroupStatus

pub struct ClusterParameterGroupStatus {
    pub cluster_parameter_status_list: Option<Vec<ClusterParameterStatus>>,
    pub parameter_apply_status: Option<String>,
    pub parameter_group_name: Option<String>,
}

Describes the status of a parameter group.

Fields

cluster_parameter_status_list: Option<Vec<ClusterParameterStatus>>

The list of parameter statuses.

For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.

parameter_apply_status: Option<String>

The status of parameter updates.

parameter_group_name: Option<String>

The name of the cluster parameter group.

Trait Implementations

impl Clone for ClusterParameterGroupStatus[src]

impl Debug for ClusterParameterGroupStatus[src]

impl Default for ClusterParameterGroupStatus[src]

impl PartialEq<ClusterParameterGroupStatus> for ClusterParameterGroupStatus[src]

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