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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/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:



2834
2835
2836
2837
2838
2839
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2834

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)


2834
2835
2836
2837
2838
2839
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2834

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