Class: Aws::Kafka::Types::ListNodesResponse

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

Overview

Information about nodes in the cluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The paginated results marker. When the result of a ListNodes operation is truncated, the call returns NextToken in the response. To get another batch of nodes, provide this token in your next request.

Returns:

  • (String)


3168
3169
3170
3171
3172
3173
# File 'lib/aws-sdk-kafka/types.rb', line 3168

class ListNodesResponse < Struct.new(
  :next_token,
  :node_info_list)
  SENSITIVE = []
  include Aws::Structure
end

#node_info_listArray<Types::NodeInfo>

List containing a NodeInfo object.

Returns:



3168
3169
3170
3171
3172
3173
# File 'lib/aws-sdk-kafka/types.rb', line 3168

class ListNodesResponse < Struct.new(
  :next_token,
  :node_info_list)
  SENSITIVE = []
  include Aws::Structure
end