Struct aws_sdk_redshift::operation::reset_cluster_parameter_group::ResetClusterParameterGroupInput
source · #[non_exhaustive]pub struct ResetClusterParameterGroupInput { /* private fields */ }
Expand description
Implementations§
source§impl ResetClusterParameterGroupInput
impl ResetClusterParameterGroupInput
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the cluster parameter group to be reset.
sourcepub fn reset_all_parameters(&self) -> bool
pub fn reset_all_parameters(&self) -> bool
If true
, all parameters in the specified parameter group will be reset to their default values.
Default: true
sourcepub fn parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[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.
source§impl ResetClusterParameterGroupInput
impl ResetClusterParameterGroupInput
sourcepub fn builder() -> ResetClusterParameterGroupInputBuilder
pub fn builder() -> ResetClusterParameterGroupInputBuilder
Creates a new builder-style object to manufacture ResetClusterParameterGroupInput
.
source§impl ResetClusterParameterGroupInput
impl ResetClusterParameterGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ResetClusterParameterGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ResetClusterParameterGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ResetClusterParameterGroup
>
Trait Implementations§
source§impl Clone for ResetClusterParameterGroupInput
impl Clone for ResetClusterParameterGroupInput
source§fn clone(&self) -> ResetClusterParameterGroupInput
fn clone(&self) -> ResetClusterParameterGroupInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<ResetClusterParameterGroupInput> for ResetClusterParameterGroupInput
impl PartialEq<ResetClusterParameterGroupInput> for ResetClusterParameterGroupInput
source§fn eq(&self, other: &ResetClusterParameterGroupInput) -> bool
fn eq(&self, other: &ResetClusterParameterGroupInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResetClusterParameterGroupInput
Auto Trait Implementations§
impl RefUnwindSafe for ResetClusterParameterGroupInput
impl Send for ResetClusterParameterGroupInput
impl Sync for ResetClusterParameterGroupInput
impl Unpin for ResetClusterParameterGroupInput
impl UnwindSafe for ResetClusterParameterGroupInput
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
Mutably borrows from an owned value. Read more