Class: Aws::Redshift::Types::DeleteClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::DeleteClusterParameterGroupMessage
- Includes:
- Structure
- Defined in:
- 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.
3602 3603 3604 3605 3606 |
# File 'lib/aws-sdk-redshift/types.rb', line 3602 class DeleteClusterParameterGroupMessage < Struct.new( :parameter_group_name) SENSITIVE = [] include Aws::Structure end |