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

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

Overview

Note:

When making an API call, you may pass ParameterNameValue data as a hash:

{
  parameter_name: "String",
  parameter_value: "String",
}

An individual DAX parameter.

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_nameString

The name of the parameter.

Returns:

  • (String)


1212
1213
1214
1215
1216
# File 'lib/aws-sdk-dax/types.rb', line 1212

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

#parameter_valueString

The value of the parameter.

Returns:

  • (String)


1212
1213
1214
1215
1216
# File 'lib/aws-sdk-dax/types.rb', line 1212

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