Class: Aws::DAX::Types::RebootNodeRequest

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 RebootNodeRequest data as a hash:

{
  cluster_name: "String", # required
  node_id: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_nameString

The name of the DAX cluster containing the node to be rebooted.

Returns:

  • (String)


1236
1237
1238
1239
1240
# File 'lib/aws-sdk-dax/types.rb', line 1236

class RebootNodeRequest < Struct.new(
  :cluster_name,
  :node_id)
  include Aws::Structure
end

#node_idString

The system-assigned ID of the node to be rebooted.

Returns:

  • (String)


1236
1237
1238
1239
1240
# File 'lib/aws-sdk-dax/types.rb', line 1236

class RebootNodeRequest < Struct.new(
  :cluster_name,
  :node_id)
  include Aws::Structure
end