Interface CreateDbParameterGroupRequest.Builder
- All Superinterfaces:
 AwsRequest.Builder,Buildable,CopyableBuilder<CreateDbParameterGroupRequest.Builder,,CreateDbParameterGroupRequest> RdsRequest.Builder,SdkBuilder<CreateDbParameterGroupRequest.Builder,,CreateDbParameterGroupRequest> SdkPojo,SdkRequest.Builder
- Enclosing class:
 CreateDbParameterGroupRequest
- 
Method Summary
Modifier and TypeMethodDescriptiondbParameterGroupFamily(String dbParameterGroupFamily) The DB parameter group family name.dbParameterGroupName(String dbParameterGroupName) The name of the DB parameter group.description(String description) The description for the DB parameter group.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.tags(Collection<Tag> tags) Tags to assign to the DB parameter group.tags(Consumer<Tag.Builder>... tags) Tags to assign to the DB parameter group.Tags to assign to the DB parameter group.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.services.rds.model.RdsRequest.Builder
buildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
dbParameterGroupName
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.
- Parameters:
 dbParameterGroupName- 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.
- 
        
 - Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
 
 - 
dbParameterGroupFamily
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 <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 mysqlThe output contains duplicates.
The following are the valid DB engine values:
- 
 
aurora-mysql - 
 
aurora-postgresql - 
 
db2-ae - 
 
db2-se - 
 
mysql - 
 
oracle-ee - 
 
oracle-ee-cdb - 
 
oracle-se2 - 
 
oracle-se2-cdb - 
 
postgres - 
 
sqlserver-ee - 
 
sqlserver-se - 
 
sqlserver-ex - 
 
sqlserver-web 
- Parameters:
 dbParameterGroupFamily- 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 <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 mysqlThe output contains duplicates.
The following are the valid DB engine values:
- 
        
aurora-mysql - 
        
aurora-postgresql - 
        
db2-ae - 
        
db2-se - 
        
mysql - 
        
oracle-ee - 
        
oracle-ee-cdb - 
        
oracle-se2 - 
        
oracle-se2-cdb - 
        
postgres - 
        
sqlserver-ee - 
        
sqlserver-se - 
        
sqlserver-ex - 
        
sqlserver-web 
- 
        
 - Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
 
 - 
description
The description for the DB parameter group.
- Parameters:
 description- The description for the DB parameter group.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
tags
Tags to assign to the DB parameter group.
- Parameters:
 tags- Tags to assign to the DB parameter group.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
tags
Tags to assign to the DB parameter group.
- Parameters:
 tags- Tags to assign to the DB parameter group.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
tags
Tags to assign to the DB parameter group.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totags(List<Tag>).- Parameters:
 tags- a consumer that will call methods onTag.Builder- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 - See Also:
 
 - 
overrideConfiguration
CreateDbParameterGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 overrideConfiguration- The override configuration.- Returns:
 - This object for method chaining.
 
 - 
overrideConfiguration
CreateDbParameterGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 builderConsumer- AConsumerto which an emptyAwsRequestOverrideConfiguration.Builderwill be given.- Returns:
 - This object for method chaining.
 
 
 -