Class: Aws::ElastiCache::Types::ModifyCacheParameterGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ModifyCacheParameterGroupMessage
- Includes:
- Structure
- Defined in:
- 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.
6173 6174 6175 6176 6177 6178 |
# File 'lib/aws-sdk-elasticache/types.rb', line 6173 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.
6173 6174 6175 6176 6177 6178 |
# File 'lib/aws-sdk-elasticache/types.rb', line 6173 class ModifyCacheParameterGroupMessage < Struct.new( :cache_parameter_group_name, :parameter_name_values) SENSITIVE = [] include Aws::Structure end |