Class: Aws::Kafka::Types::ListClusterOperationsResponse

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 operation information and a next token if the response is truncated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_operation_info_listArray<Types::ClusterOperationInfo>

An array of cluster operation information objects.

Returns:



2246
2247
2248
2249
2250
2251
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2246

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

#next_tokenString

If the response of ListClusterOperations is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClusterOperations.

Returns:

  • (String)


2246
2247
2248
2249
2250
2251
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2246

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