Class: Aws::DocDB::Types::ResetDBClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::DocDB::Types::ResetDBClusterParameterGroupMessage
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
Represents the input to ResetDBClusterParameterGroup.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_cluster_parameter_group_name ⇒ String
The name of the cluster parameter group to reset.
-
#parameters ⇒ Array<Types::Parameter>
A list of parameter names in the cluster parameter group to reset to the default values.
-
#reset_all_parameters ⇒ Boolean
A value that is set to
trueto reset all parameters in the cluster parameter group to their default values, andfalseotherwise.
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the cluster parameter group to reset.
5503 5504 5505 5506 5507 5508 5509 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5503 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Array<Types::Parameter>
A list of parameter names in the cluster parameter group to reset to
the default values. You can't use this parameter if the
ResetAllParameters parameter is set to true.
5503 5504 5505 5506 5507 5508 5509 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5503 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |
#reset_all_parameters ⇒ Boolean
A value that is set to true to reset all parameters in the cluster
parameter group to their default values, and false otherwise. You
can't use this parameter if there is a list of parameter names
specified for the Parameters parameter.
5503 5504 5505 5506 5507 5508 5509 |
# File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 5503 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |