Class: Aws::RDS::Types::ResetDBClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ResetDBClusterParameterGroupMessage
- Defined in:
- gems/aws-sdk-rds/lib/aws-sdk-rds/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 to reset.
-
#parameters ⇒ Array<Types::Parameter>
A list of parameter names in the DB cluster parameter group to reset to the default values.
-
#reset_all_parameters ⇒ Boolean
Specifies whether to reset all parameters in the DB cluster parameter group to their default values.
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group to reset.
23115 23116 23117 23118 23119 23120 23121 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 23115 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 DB cluster parameter group to reset
to the default values. You can't use this parameter if the
ResetAllParameters
parameter is enabled.
23115 23116 23117 23118 23119 23120 23121 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 23115 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |
#reset_all_parameters ⇒ Boolean
Specifies whether to reset all parameters in the DB cluster
parameter group to their default values. You can't use this
parameter if there is a list of parameter names specified for the
Parameters
parameter.
23115 23116 23117 23118 23119 23120 23121 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 23115 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |