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
Fields§
§db_cluster_parameter_group_name: String
The name of the DB cluster parameter group.
Constraints:
-
Must match the name of an existing DB cluster parameter group.
This value is stored as a lowercase string.
db_parameter_group_family: String
The DB cluster parameter group family name. A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a database engine and engine version compatible with that DB cluster parameter group family.
Aurora MySQL
Example: aurora5.6
, aurora-mysql5.7
Aurora PostgreSQL
Example: aurora-postgresql9.6
description: String
The description for the DB cluster parameter group.
Tags to assign to the DB 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 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 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