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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#node_typeString

A node type to which the parameter value applies.

Returns:

  • (String)


1078
1079
1080
1081
1082
1083
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1078

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

#valueString

The parameter value for this node type.

Returns:

  • (String)


1078
1079
1080
1081
1082
1083
# File 'gems/aws-sdk-dax/lib/aws-sdk-dax/types.rb', line 1078

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