Struct aws_sdk_docdb::operation::reset_db_cluster_parameter_group::ResetDbClusterParameterGroupOutput
source · #[non_exhaustive]pub struct ResetDbClusterParameterGroupOutput {
pub db_cluster_parameter_group_name: Option<String>,
/* private fields */
}
Expand description
Contains the name of a cluster parameter group.
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_cluster_parameter_group_name: Option<String>
The name of a cluster parameter group.
Constraints:
-
Must be from 1 to 255 letters or numbers.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
This value is stored as a lowercase string.
Implementations§
source§impl ResetDbClusterParameterGroupOutput
impl ResetDbClusterParameterGroupOutput
sourcepub fn db_cluster_parameter_group_name(&self) -> Option<&str>
pub fn db_cluster_parameter_group_name(&self) -> Option<&str>
The name of a cluster parameter group.
Constraints:
-
Must be from 1 to 255 letters or numbers.
-
The first character must be a letter.
-
Cannot end with a hyphen or contain two consecutive hyphens.
This value is stored as a lowercase string.
source§impl ResetDbClusterParameterGroupOutput
impl ResetDbClusterParameterGroupOutput
sourcepub fn builder() -> ResetDbClusterParameterGroupOutputBuilder
pub fn builder() -> ResetDbClusterParameterGroupOutputBuilder
Creates a new builder-style object to manufacture ResetDbClusterParameterGroupOutput
.
Trait Implementations§
source§impl Clone for ResetDbClusterParameterGroupOutput
impl Clone for ResetDbClusterParameterGroupOutput
source§fn clone(&self) -> ResetDbClusterParameterGroupOutput
fn clone(&self) -> ResetDbClusterParameterGroupOutput
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 for ResetDbClusterParameterGroupOutput
impl PartialEq for ResetDbClusterParameterGroupOutput
source§fn eq(&self, other: &ResetDbClusterParameterGroupOutput) -> bool
fn eq(&self, other: &ResetDbClusterParameterGroupOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ResetDbClusterParameterGroupOutput
impl RequestId for ResetDbClusterParameterGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ResetDbClusterParameterGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for ResetDbClusterParameterGroupOutput
impl Send for ResetDbClusterParameterGroupOutput
impl Sync for ResetDbClusterParameterGroupOutput
impl Unpin for ResetDbClusterParameterGroupOutput
impl UnwindSafe for ResetDbClusterParameterGroupOutput
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