Struct rusoto_redshift::ResetClusterParameterGroupMessage[][src]

pub struct ResetClusterParameterGroupMessage {
    pub parameter_group_name: String,
    pub parameters: Option<Vec<Parameter>>,
    pub reset_all_parameters: Option<bool>,
}

Fields

The name of the cluster parameter group to be reset.

An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied.

Constraints: A maximum of 20 parameters can be reset in a single request.

If true, all parameters in the specified parameter group will be reset to their default values.

Default: true

Trait Implementations

impl Default for ResetClusterParameterGroupMessage
[src]

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

impl Debug for ResetClusterParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ResetClusterParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResetClusterParameterGroupMessage
[src]

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

This method tests for !=.

Auto Trait Implementations