Class: Aws::DAX::Types::ParameterNameValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb

Overview

An individual DAX parameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_nameString

The name of the parameter.

Returns:

  • (String)


1246
1247
1248
1249
1250
1251
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1246

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

#parameter_valueString

The value of the parameter.

Returns:

  • (String)


1246
1247
1248
1249
1250
1251
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1246

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