Struct rusoto_rds::ResetDBClusterParameterGroupMessage[][src]

pub struct ResetDBClusterParameterGroupMessage {
    pub db_cluster_parameter_group_name: String,
    pub parameters: Option<Vec<Parameter>>,
    pub reset_all_parameters: Option<bool>,
}

Fields

The name of the DB cluster parameter group to reset.

A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

A value that is set to true to reset all parameters in the DB cluster parameter group to their default values, and false otherwise. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

Trait Implementations

impl Default for ResetDBClusterParameterGroupMessage
[src]

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

impl Debug for ResetDBClusterParameterGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ResetDBClusterParameterGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResetDBClusterParameterGroupMessage
[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