Struct aws_sdk_rds::input::CreateDbParameterGroupInput
source · [−]#[non_exhaustive]pub struct CreateDbParameterGroupInput { /* private fields */ }Expand description
Implementations
sourceimpl 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDbParameterGroupInput.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for CreateDbParameterGroupInput
impl Clone for CreateDbParameterGroupInput
sourcefn clone(&self) -> CreateDbParameterGroupInput
fn clone(&self) -> CreateDbParameterGroupInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more