#[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 ==
.impl StructuralPartialEq for ResetParameterGroupInput
Auto Trait Implementations§
impl Freeze for ResetParameterGroupInput
impl RefUnwindSafe for ResetParameterGroupInput
impl Send for ResetParameterGroupInput
impl Sync for ResetParameterGroupInput
impl Unpin for ResetParameterGroupInput
impl UnwindSafe for ResetParameterGroupInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more