Class: Aws::DAX::Types::UpdateParameterGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DAX::Types::UpdateParameterGroupRequest
- Defined in:
- gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_group_name ⇒ String
The name of the parameter group.
-
#parameter_name_values ⇒ Array<Types::ParameterNameValue>
An array of name-value pairs for the parameters in the group.
Instance Attribute Details
#parameter_group_name ⇒ String
The name of the parameter group.
1631 1632 1633 1634 1635 1636 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1631 class UpdateParameterGroupRequest < Struct.new( :parameter_group_name, :parameter_name_values) SENSITIVE = [] include Aws::Structure end |
#parameter_name_values ⇒ Array<Types::ParameterNameValue>
An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
record-ttl-millis
and query-ttl-millis
are the only supported
parameter names. For more details, see Configuring TTL
Settings.
1631 1632 1633 1634 1635 1636 |
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1631 class UpdateParameterGroupRequest < Struct.new( :parameter_group_name, :parameter_name_values) SENSITIVE = [] include Aws::Structure end |