pub struct CreateDBClusterParameterGroupMessage {
pub db_cluster_parameter_group_name: String,
pub db_parameter_group_family: String,
pub description: String,
pub tags: Option<Vec<Tag>>,
}
Expand description
Represents the input of CreateDBClusterParameterGroup.
Fields§
§db_cluster_parameter_group_name: String
The name of the cluster parameter group.
Constraints:
-
Must not match the name of an existing
DBClusterParameterGroup
.
This value is stored as a lowercase string.
db_parameter_group_family: String
The cluster parameter group family name.
description: String
The description for the cluster parameter group.
The tags to be assigned to the cluster parameter group.
Trait Implementations§
Source§impl Clone for CreateDBClusterParameterGroupMessage
impl Clone for CreateDBClusterParameterGroupMessage
Source§fn clone(&self) -> CreateDBClusterParameterGroupMessage
fn clone(&self) -> CreateDBClusterParameterGroupMessage
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 CreateDBClusterParameterGroupMessage
impl Default for CreateDBClusterParameterGroupMessage
Source§fn default() -> CreateDBClusterParameterGroupMessage
fn default() -> CreateDBClusterParameterGroupMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateDBClusterParameterGroupMessage
impl PartialEq for CreateDBClusterParameterGroupMessage
Source§fn eq(&self, other: &CreateDBClusterParameterGroupMessage) -> bool
fn eq(&self, other: &CreateDBClusterParameterGroupMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDBClusterParameterGroupMessage
Auto Trait Implementations§
impl Freeze for CreateDBClusterParameterGroupMessage
impl RefUnwindSafe for CreateDBClusterParameterGroupMessage
impl Send for CreateDBClusterParameterGroupMessage
impl Sync for CreateDBClusterParameterGroupMessage
impl Unpin for CreateDBClusterParameterGroupMessage
impl UnwindSafe for CreateDBClusterParameterGroupMessage
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