Class: Aws::MemoryDB::Types::ParameterNameValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::ParameterNameValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
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
2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2258 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |
#parameter_value ⇒ String
The value of the parameter
2258 2259 2260 2261 2262 2263 |
# File 'lib/aws-sdk-memorydb/types.rb', line 2258 class ParameterNameValue < Struct.new( :parameter_name, :parameter_value) SENSITIVE = [] include Aws::Structure end |