#[non_exhaustive]pub struct CreateDbParameterGroupInput { /* private fields */ }Expand description
Implementations§
source§impl CreateDbParameterGroupInput
impl CreateDbParameterGroupInput
sourcepub fn db_parameter_group_name(&self) -> Option<&str>
pub fn db_parameter_group_name(&self) -> Option<&str>
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.
sourcepub fn db_parameter_group_family(&self) -> Option<&str>
pub fn db_parameter_group_family(&self) -> Option<&str>
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 for a DB engine, use the following command:
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine
For example, to list all of the available parameter group families for the MySQL DB engine, use the following command:
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine mysql
The output contains duplicates.
The following are the valid DB engine values:
-
aurora(for MySQL 5.6-compatible Aurora) -
aurora-mysql(for MySQL 5.7-compatible and MySQL 8.0-compatible Aurora) -
aurora-postgresql -
mariadb -
mysql -
oracle-ee -
oracle-ee-cdb -
oracle-se2 -
oracle-se2-cdb -
postgres -
sqlserver-ee -
sqlserver-se -
sqlserver-ex -
sqlserver-web
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the DB parameter group.
Tags to assign to the DB parameter group.
source§impl CreateDbParameterGroupInput
impl CreateDbParameterGroupInput
sourcepub fn builder() -> CreateDbParameterGroupInputBuilder
pub fn builder() -> CreateDbParameterGroupInputBuilder
Creates a new builder-style object to manufacture CreateDbParameterGroupInput.
source§impl CreateDbParameterGroupInput
impl CreateDbParameterGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDBParameterGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<CreateDBParameterGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDBParameterGroup>
Trait Implementations§
source§impl Clone for CreateDbParameterGroupInput
impl Clone for CreateDbParameterGroupInput
source§fn clone(&self) -> CreateDbParameterGroupInput
fn clone(&self) -> CreateDbParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateDbParameterGroupInput
impl Debug for CreateDbParameterGroupInput
source§impl PartialEq<CreateDbParameterGroupInput> for CreateDbParameterGroupInput
impl PartialEq<CreateDbParameterGroupInput> for CreateDbParameterGroupInput
source§fn eq(&self, other: &CreateDbParameterGroupInput) -> bool
fn eq(&self, other: &CreateDbParameterGroupInput) -> bool
self and other values to be equal, and is used
by ==.