Class: Aws::Neptune::Types::DeleteDBClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::DeleteDBClusterParameterGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group.
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group.
Constraints:
-
Must be the name of an existing DB cluster parameter group.
-
You can’t delete a default DB cluster parameter group.
-
Cannot be associated with any DB clusters.
3572 3573 3574 3575 3576 |
# File 'lib/aws-sdk-neptune/types.rb', line 3572 class DeleteDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name) SENSITIVE = [] include Aws::Structure end |