Class: Aws::MemoryDB::Types::ParameterNameValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/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

Instance Attribute Details

#parameter_nameString

The name of the parameter

Returns:

  • (String)


2230
2231
2232
2233
2234
2235
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2230

class ParameterNameValue < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

The value of the parameter

Returns:

  • (String)


2230
2231
2232
2233
2234
2235
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 2230

class ParameterNameValue < Struct.new(
  :parameter_name,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end