Class: Aws::Kafka::Types::ListClustersResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cluster_info_listArray<Types::ClusterInfo>

Information on each of the MSK clusters in the response.

Returns:



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_tokenString

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.

Returns:

  • (String)


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