Class: Aws::ElastiCache::Types::ParameterNameValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/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_name ⇒ String

The name of the parameter.

Returns:

  • (String)


7327
7328
7329
7330
7331
7332
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 7327

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

#parameter_value ⇒ String

The value of the parameter.

Returns:

  • (String)


7327
7328
7329
7330
7331
7332
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 7327

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