#[non_exhaustive]pub struct DeleteDbParameterGroupInput {
pub db_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.db_parameter_group_name: Option<String>The name of the DB parameter group.
Constraints:
-
Must be the name of an existing DB parameter group
-
You can't delete a default DB parameter group
-
Can't be associated with any DB instances
Implementations§
source§impl DeleteDbParameterGroupInput
impl DeleteDbParameterGroupInput
sourcepub fn db_parameter_group_name(&self) -> Option<&str>
pub fn db_parameter_group_name(&self) -> Option<&str>
The name of the DB parameter group.
Constraints:
-
Must be the name of an existing DB parameter group
-
You can't delete a default DB parameter group
-
Can't be associated with any DB instances
source§impl DeleteDbParameterGroupInput
impl DeleteDbParameterGroupInput
sourcepub fn builder() -> DeleteDbParameterGroupInputBuilder
pub fn builder() -> DeleteDbParameterGroupInputBuilder
Creates a new builder-style object to manufacture DeleteDbParameterGroupInput.
Trait Implementations§
source§impl Clone for DeleteDbParameterGroupInput
impl Clone for DeleteDbParameterGroupInput
source§fn clone(&self) -> DeleteDbParameterGroupInput
fn clone(&self) -> DeleteDbParameterGroupInput
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 Debug for DeleteDbParameterGroupInput
impl Debug for DeleteDbParameterGroupInput
source§impl PartialEq for DeleteDbParameterGroupInput
impl PartialEq for DeleteDbParameterGroupInput
source§fn eq(&self, other: &DeleteDbParameterGroupInput) -> bool
fn eq(&self, other: &DeleteDbParameterGroupInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteDbParameterGroupInput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteDbParameterGroupInput
impl Send for DeleteDbParameterGroupInput
impl Sync for DeleteDbParameterGroupInput
impl Unpin for DeleteDbParameterGroupInput
impl UnwindSafe for DeleteDbParameterGroupInput
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
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>
Creates a shared type from an unshared type.