Class: Aws::RDS::Types::DeleteDBParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DeleteDBParameterGroupMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass DeleteDBParameterGroupMessage data as a hash:
{
db_parameter_group_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_parameter_group_name ⇒ String
The name of the DB parameter group.
Instance Attribute Details
#db_parameter_group_name ⇒ String
The name of the DB parameter group.
Constraints:
Must be the name of an existing DB parameter group
You can't delete a default DB parameter group
Can't be associated with any DB instances
9791 9792 9793 9794 9795 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 9791 class DeleteDBParameterGroupMessage < Struct.new( :db_parameter_group_name) SENSITIVE = [] include Aws::Structure end |