Class: Aws::ElastiCache::Types::ParameterNameValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ParameterNameValue
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass ParameterNameValue data as a hash:
{
parameter_name: "String",
parameter_value: "String",
}
Describes a name-value pair that is used to update the value of a parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#parameter_name ⇒ String
The name of the parameter.
-
#parameter_value ⇒ String
The value of the parameter.
Instance Attribute Details
#parameter_name ⇒ String
The name of the parameter.
6864 6865 6866 6867 6868 6869 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6864 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The value of the parameter.
6864 6865 6866 6867 6868 6869 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 6864 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |