pub struct CreateDBParameterGroupMessage {
pub db_parameter_group_family: String,
pub db_parameter_group_name: String,
pub description: String,
pub tags: Option<Vec<Tag>>,
}
Expand description
Fields§
§db_parameter_group_family: String
The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family.
To list all of the available parameter group families, use the following command:
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
The output contains duplicates.
db_parameter_group_name: String
The name of the DB parameter group.
Constraints:
-
Must be 1 to 255 letters, numbers, or hyphens.
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
This value is stored as a lowercase string.
description: String
The description for the DB parameter group.
Tags to assign to the DB parameter group.
Trait Implementations§
Source§impl Clone for CreateDBParameterGroupMessage
impl Clone for CreateDBParameterGroupMessage
Source§fn clone(&self) -> CreateDBParameterGroupMessage
fn clone(&self) -> CreateDBParameterGroupMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CreateDBParameterGroupMessage
impl Default for CreateDBParameterGroupMessage
Source§fn default() -> CreateDBParameterGroupMessage
fn default() -> CreateDBParameterGroupMessage
Source§impl PartialEq for CreateDBParameterGroupMessage
impl PartialEq for CreateDBParameterGroupMessage
Source§fn eq(&self, other: &CreateDBParameterGroupMessage) -> bool
fn eq(&self, other: &CreateDBParameterGroupMessage) -> bool
self
and other
values to be equal, and is used by ==
.