Struct aws_sdk_redshift::operation::delete_cluster_parameter_group::DeleteClusterParameterGroupInput
source · #[non_exhaustive]pub struct DeleteClusterParameterGroupInput {
pub parameter_group_name: Option<String>,
}
Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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 deleted.
Constraints:
-
Must be the name of an existing cluster parameter group.
-
Cannot delete a default cluster parameter group.
Implementations§
source§impl DeleteClusterParameterGroupInput
impl DeleteClusterParameterGroupInput
sourcepub fn parameter_group_name(&self) -> Option<&str>
pub fn parameter_group_name(&self) -> Option<&str>
The name of the parameter group to be deleted.
Constraints:
-
Must be the name of an existing cluster parameter group.
-
Cannot delete a default cluster parameter group.
source§impl DeleteClusterParameterGroupInput
impl DeleteClusterParameterGroupInput
sourcepub fn builder() -> DeleteClusterParameterGroupInputBuilder
pub fn builder() -> DeleteClusterParameterGroupInputBuilder
Creates a new builder-style object to manufacture DeleteClusterParameterGroupInput
.
Trait Implementations§
source§impl Clone for DeleteClusterParameterGroupInput
impl Clone for DeleteClusterParameterGroupInput
source§fn clone(&self) -> DeleteClusterParameterGroupInput
fn clone(&self) -> DeleteClusterParameterGroupInput
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<DeleteClusterParameterGroupInput> for DeleteClusterParameterGroupInput
impl PartialEq<DeleteClusterParameterGroupInput> for DeleteClusterParameterGroupInput
source§fn eq(&self, other: &DeleteClusterParameterGroupInput) -> bool
fn eq(&self, other: &DeleteClusterParameterGroupInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteClusterParameterGroupInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteClusterParameterGroupInput
impl Send for DeleteClusterParameterGroupInput
impl Sync for DeleteClusterParameterGroupInput
impl Unpin for DeleteClusterParameterGroupInput
impl UnwindSafe for DeleteClusterParameterGroupInput
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