Skip to main content

cluster_operation_v2s

Creates, updates, deletes, gets or lists a cluster_operation_v2s resource.

Overview

Namecluster_operation_v2s
TypeResource
Idaws.kafka.cluster_operation_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
cluster_arnstringARN of the cluster.
cluster_typestringType of the backend cluster. (PROVISIONED, SERVERLESS)
end_timestring (date-time)The time at which the operation finished.
error_infoobjectIf cluster operation failed from an error, it describes the error.
operation_arnstringARN of the cluster operation.
operation_statestringState of the cluster operation.
operation_typestringType of the cluster operation.
provisionedobjectProperties of a provisioned cluster.
serverlessobjectProperties of a serverless cluster.
start_timestring (date-time)The time at which operation was started.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_cluster_operation_v2selectcluster_operation_arn, regionReturns a description of the cluster operation specified by the ARN.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
cluster_operation_arnstringARN of the cluster operation to describe.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a description of the cluster operation specified by the ARN.

SELECT
cluster_arn,
cluster_type,
end_time,
error_info,
operation_arn,
operation_state,
operation_type,
provisioned,
serverless,
start_time
FROM aws.kafka.cluster_operation_v2s
WHERE cluster_operation_arn = '{{ cluster_operation_arn }}' -- required
AND region = '{{ region }}' -- required
;