Class: Aws::RDS::Types::ModifyDBClusterParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::ModifyDBClusterParameterGroupMessage
- Includes:
- Structure
- Defined in:
- 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 modify.
-
#parameters ⇒ Array<Types::Parameter>
A list of parameters in the DB cluster parameter group to modify.
Instance Attribute Details
#db_cluster_parameter_group_name ⇒ String
The name of the DB cluster parameter group to modify.
18069 18070 18071 18072 18073 18074 |
# File 'lib/aws-sdk-rds/types.rb', line 18069 class ModifyDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :parameters) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Array<Types::Parameter>
A list of parameters in the DB cluster parameter group to modify.
Valid Values (for the application method): ‘immediate | pending-reboot`
<note markdown=“1”> You can use the ‘immediate` value with dynamic parameters only. You can use the `pending-reboot` value for both dynamic and static parameters.
When the application method is `immediate`, changes to dynamic
parameters are applied immediately to the DB clusters associated with the parameter group. When the application method is ‘pending-reboot`, changes to dynamic and static parameters are applied after a reboot without failover to the DB clusters associated with the parameter group.
</note>
18069 18070 18071 18072 18073 18074 |
# File 'lib/aws-sdk-rds/types.rb', line 18069 class ModifyDBClusterParameterGroupMessage < Struct.new( :db_cluster_parameter_group_name, :parameters) SENSITIVE = [] include Aws::Structure end |