Class: Aws::DAX::Types::NodeTypeSpecificValue

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

Overview

Represents a parameter value that is applicable to a particular node type.

Instance Attribute Summary collapse

Instance Attribute Details

#node_typeString

A node type to which the parameter value applies.

Returns:

  • (String)


1061
1062
1063
1064
1065
# File 'lib/aws-sdk-dax/types.rb', line 1061

class NodeTypeSpecificValue < Struct.new(
  :node_type,
  :value)
  include Aws::Structure
end

#valueString

The parameter value for this node type.

Returns:

  • (String)


1061
1062
1063
1064
1065
# File 'lib/aws-sdk-dax/types.rb', line 1061

class NodeTypeSpecificValue < Struct.new(
  :node_type,
  :value)
  include Aws::Structure
end