List Cluster Operations V2
kafka_list_cluster_operations_v2 | R Documentation |
Returns a list of all the operations that have been performed on the specified MSK cluster¶
Description¶
Returns a list of all the operations that have been performed on the specified MSK cluster.
Usage¶
Arguments¶
ClusterArn
[required] The arn of the cluster whose operations are being requested.
MaxResults
The maxResults of the query.
NextToken
The nextToken of the query.
Value¶
A list with the following syntax:
list(
ClusterOperationInfoList = list(
list(
ClusterArn = "string",
ClusterType = "PROVISIONED"|"SERVERLESS",
StartTime = as.POSIXct(
"2015-01-01"
),
EndTime = as.POSIXct(
"2015-01-01"
),
OperationArn = "string",
OperationState = "string",
OperationType = "string"
)
),
NextToken = "string"
)