Class: Aws::Kafka::Types::ListClustersResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListClustersResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
The response contains an array containing cluster information and a next token if the response is truncated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_info_list ⇒ Array<Types::ClusterInfo>
Information on each of the MSK clusters in the response.
-
#next_token ⇒ String
The paginated results marker.
Instance Attribute Details
#cluster_info_list ⇒ Array<Types::ClusterInfo>
Information on each of the MSK clusters in the response.
2853 2854 2855 2856 2857 2858 |
# File 'lib/aws-sdk-kafka/types.rb', line 2853 class ListClustersResponse < Struct.new( :cluster_info_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The paginated results marker. When the result of a ListClusters operation is truncated, the call returns NextToken in the response. To get another batch of clusters, provide this token in your next request.
2853 2854 2855 2856 2857 2858 |
# File 'lib/aws-sdk-kafka/types.rb', line 2853 class ListClustersResponse < Struct.new( :cluster_info_list, :next_token) SENSITIVE = [] include Aws::Structure end |