Class: Aws::RDS::Types::ModifyDBClusterParameterGroupMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-rds/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#db_cluster_parameter_group_nameString

The name of the DB cluster parameter group to modify.

Returns:

  • (String)


17620
17621
17622
17623
17624
17625
# File 'lib/aws-sdk-rds/types.rb', line 17620

class ModifyDBClusterParameterGroupMessage < Struct.new(
  :db_cluster_parameter_group_name,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersArray<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>

Returns:



17620
17621
17622
17623
17624
17625
# File 'lib/aws-sdk-rds/types.rb', line 17620

class ModifyDBClusterParameterGroupMessage < Struct.new(
  :db_cluster_parameter_group_name,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end