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.
24012 24013 24014 24015 24016 24017 24018 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 24012 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.
24012 24013 24014 24015 24016 24017 24018 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 24012 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.
24012 24013 24014 24015 24016 24017 24018 |
# File 'gems/aws-sdk-rds/lib/aws-sdk-rds/types.rb', line 24012 class ResetDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :reset_all_parameters, :parameters) SENSITIVE = [] include Aws::Structure end |