Class: Aws::Kafka::Types::ListClusterOperationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListClusterOperationsResponse
- Includes:
- Structure
- Defined in:
- 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
-
#cluster_operation_info_list ⇒ Array<Types::ClusterOperationInfo>
An array of cluster operation information objects.
-
#next_token ⇒ String
If the response of ListClusterOperations is truncated, it returns a NextToken in the response.
Instance Attribute Details
#cluster_operation_info_list ⇒ Array<Types::ClusterOperationInfo>
An array of cluster operation information objects.
2265 2266 2267 2268 2269 2270 |
# File 'lib/aws-sdk-kafka/types.rb', line 2265 class ListClusterOperationsResponse < Struct.new( :cluster_operation_info_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
2265 2266 2267 2268 2269 2270 |
# File 'lib/aws-sdk-kafka/types.rb', line 2265 class ListClusterOperationsResponse < Struct.new( :cluster_operation_info_list, :next_token) SENSITIVE = [] include Aws::Structure end |