Class: Aws::Kafka::Types::ListClustersV2Response
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListClustersV2Response
- 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::Cluster>
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::Cluster>
Information on each of the MSK clusters in the response.
2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-kafka/types.rb', line 2338 class ListClustersV2Response < 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.
2338 2339 2340 2341 2342 2343 |
# File 'lib/aws-sdk-kafka/types.rb', line 2338 class ListClustersV2Response < Struct.new( :cluster_info_list, :next_token) SENSITIVE = [] include Aws::Structure end |