Class: Aws::Redshift::Types::DeleteClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DeleteClusterParameterGroupMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_group_name ⇒ String
The name of the parameter group to be deleted.
Instance Attribute Details
#parameter_group_name ⇒ String
The name of the parameter group to be deleted.
Constraints:
Must be the name of an existing cluster parameter group.
Cannot delete a default cluster parameter group.
3607 3608 3609 3610 3611 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 3607 class DeleteClusterParameterGroupMessage < Struct.new( :parameter_group_name) SENSITIVE = [] include Aws::Structure end |