Struct aws_sdk_redshift::operation::modify_cluster_parameter_group::ModifyClusterParameterGroupInput
source · #[non_exhaustive]pub struct ModifyClusterParameterGroupInput {
pub parameter_group_name: Option<String>,
pub parameters: Option<Vec<Parameter>>,
}
Expand description
Describes a modify cluster parameter group operation.
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 be modified.
parameters: Option<Vec<Parameter>>
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
Implementations§
source§impl ModifyClusterParameterGroupInput
impl ModifyClusterParameterGroupInput
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the parameter group to be modified.
sourcepub fn parameters(&self) -> &[Parameter]
pub fn parameters(&self) -> &[Parameter]
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameters.is_none()
.
source§impl ModifyClusterParameterGroupInput
impl ModifyClusterParameterGroupInput
sourcepub fn builder() -> ModifyClusterParameterGroupInputBuilder
pub fn builder() -> ModifyClusterParameterGroupInputBuilder
Creates a new builder-style object to manufacture ModifyClusterParameterGroupInput
.
Trait Implementations§
source§impl Clone for ModifyClusterParameterGroupInput
impl Clone for ModifyClusterParameterGroupInput
source§fn clone(&self) -> ModifyClusterParameterGroupInput
fn clone(&self) -> ModifyClusterParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ModifyClusterParameterGroupInput
impl PartialEq for ModifyClusterParameterGroupInput
source§fn eq(&self, other: &ModifyClusterParameterGroupInput) -> bool
fn eq(&self, other: &ModifyClusterParameterGroupInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterParameterGroupInput
Auto Trait Implementations§
impl Freeze for ModifyClusterParameterGroupInput
impl RefUnwindSafe for ModifyClusterParameterGroupInput
impl Send for ModifyClusterParameterGroupInput
impl Sync for ModifyClusterParameterGroupInput
impl Unpin for ModifyClusterParameterGroupInput
impl UnwindSafe for ModifyClusterParameterGroupInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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