#[non_exhaustive]pub struct ResetParameterGroupInput {
pub parameter_group_name: Option<String>,
pub all_parameters: Option<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: Option<bool>
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.
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§
source§impl ResetParameterGroupInput
impl ResetParameterGroupInput
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the parameter group to reset.
sourcepub fn all_parameters(&self) -> Option<bool>
pub fn all_parameters(&self) -> Option<bool>
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.
sourcepub fn parameter_names(&self) -> &[String]
pub fn parameter_names(&self) -> &[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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_names.is_none()
.
source§impl ResetParameterGroupInput
impl ResetParameterGroupInput
sourcepub fn builder() -> ResetParameterGroupInputBuilder
pub fn builder() -> ResetParameterGroupInputBuilder
Creates a new builder-style object to manufacture ResetParameterGroupInput
.
Trait Implementations§
source§impl Clone for ResetParameterGroupInput
impl Clone for ResetParameterGroupInput
source§fn clone(&self) -> ResetParameterGroupInput
fn clone(&self) -> ResetParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ResetParameterGroupInput
impl Debug for ResetParameterGroupInput
source§impl PartialEq for ResetParameterGroupInput
impl PartialEq for ResetParameterGroupInput
source§fn eq(&self, other: &ResetParameterGroupInput) -> bool
fn eq(&self, other: &ResetParameterGroupInput) -> bool
self
and other
values to be equal, and is used
by ==
.