Struct aws_sdk_memorydb::input::ResetParameterGroupInput [−][src]
#[non_exhaustive]pub struct ResetParameterGroupInput {
pub parameter_group_name: Option<String>,
pub all_parameters: bool,
pub parameter_names: Option<Vec<String>>,
}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 parameter group to reset.
all_parameters: boolIf true, all parameters in the parameter group are reset to their default values. If false, only the parameters listed by ParameterNames are reset to their default values.
parameter_names: Option<Vec<String>>An array of parameter names to reset to their default values. If AllParameters is true, do not use ParameterNames. If AllParameters is false, you must specify the name of at least one parameter to reset.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetParameterGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetParameterGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ResetParameterGroup>
Creates a new builder-style object to manufacture ResetParameterGroupInput
The name of the parameter group to reset.
If true, all parameters in the parameter group are reset to their default values. If false, only the parameters listed by ParameterNames are reset to their default values.
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 RefUnwindSafe for ResetParameterGroupInput
impl Send for ResetParameterGroupInput
impl Sync for ResetParameterGroupInput
impl Unpin for ResetParameterGroupInput
impl UnwindSafe for ResetParameterGroupInput
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
