Class: Aws::ElastiCache::Types::ModifyCacheParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ModifyCacheParameterGroupMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Represents the input of a ModifyCacheParameterGroup
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cache_parameter_group_name ⇒ String
The name of the cache parameter group to modify.
-
#parameter_name_values ⇒ Array<Types::ParameterNameValue>
An array of parameter names and values for the parameter update.
Instance Attribute Details
#cache_parameter_group_name ⇒ String
The name of the cache parameter group to modify.
6190 6191 6192 6193 6194 6195 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6190 class ModifyCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :parameter_name_values) SENSITIVE = [] include Aws::Structure end |
#parameter_name_values ⇒ Array<Types::ParameterNameValue>
An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.
6190 6191 6192 6193 6194 6195 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6190 class ModifyCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :parameter_name_values) SENSITIVE = [] include Aws::Structure end |