Class: Aws::Kafka::Types::ListNodesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListNodesResponse
- Defined in:
- gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb
Overview
Information about nodes in the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
The paginated results marker.
-
#node_info_list ⇒ Array<Types::NodeInfo>
List containing a NodeInfo object.
Instance Attribute Details
#next_token ⇒ String
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.
1832 1833 1834 1835 1836 1837 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1832 class ListNodesResponse < Struct.new( :next_token, :node_info_list) SENSITIVE = [] include Aws::Structure end |
#node_info_list ⇒ Array<Types::NodeInfo>
List containing a NodeInfo object.
1832 1833 1834 1835 1836 1837 |
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 1832 class ListNodesResponse < Struct.new( :next_token, :node_info_list) SENSITIVE = [] include Aws::Structure end |