pub struct DBClusterParameterGroupNameMessage {
pub db_cluster_parameter_group_name: Option<String>,
}
Expand description
Contains the name of a cluster parameter group.
Fields§
§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.
Trait Implementations§
Source§impl Clone for DBClusterParameterGroupNameMessage
impl Clone for DBClusterParameterGroupNameMessage
Source§fn clone(&self) -> DBClusterParameterGroupNameMessage
fn clone(&self) -> DBClusterParameterGroupNameMessage
Returns a duplicate 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 Default for DBClusterParameterGroupNameMessage
impl Default for DBClusterParameterGroupNameMessage
Source§fn default() -> DBClusterParameterGroupNameMessage
fn default() -> DBClusterParameterGroupNameMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterParameterGroupNameMessage
impl PartialEq for DBClusterParameterGroupNameMessage
Source§fn eq(&self, other: &DBClusterParameterGroupNameMessage) -> bool
fn eq(&self, other: &DBClusterParameterGroupNameMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DBClusterParameterGroupNameMessage
Auto Trait Implementations§
impl Freeze for DBClusterParameterGroupNameMessage
impl RefUnwindSafe for DBClusterParameterGroupNameMessage
impl Send for DBClusterParameterGroupNameMessage
impl Sync for DBClusterParameterGroupNameMessage
impl Unpin for DBClusterParameterGroupNameMessage
impl UnwindSafe for DBClusterParameterGroupNameMessage
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