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
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
11847 11848 11849 11850 11851 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 11847 class DeleteDBParameterGroupMessage < Struct.new( :db_parameter_group_name) SENSITIVE = [] include Aws::Structure end |