Class: Aws::Kafka::Types::ListClustersV2Response

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::Cluster>

Information on each of the MSK clusters in the response.

Returns:



2319
2320
2321
2322
2323
2324
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2319

class ListClustersV2Response < 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)


2319
2320
2321
2322
2323
2324
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2319

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