Struct aws_sdk_redshift::input::ResetClusterParameterGroupInput [−][src]
#[non_exhaustive]pub struct ResetClusterParameterGroupInput {
pub parameter_group_name: Option<String>,
pub reset_all_parameters: bool,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.parameter_group_name: Option<String>
The name of the cluster parameter group to be reset.
reset_all_parameters: bool
If true
, all parameters in the specified parameter group will be reset
to their default values.
Default: true
parameters: Option<Vec<Parameter>>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetClusterParameterGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetClusterParameterGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ResetClusterParameterGroup
>
Creates a new builder-style object to manufacture ResetClusterParameterGroupInput
The name of the cluster parameter group to be reset.
If true
, all parameters in the specified parameter group will be reset
to their default values.
Default: true
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ResetClusterParameterGroupInput
impl Sync for ResetClusterParameterGroupInput
impl Unpin for ResetClusterParameterGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more