{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-msk/refs/heads/main/json-schema/msk-api-cluster-operation-info-schema.json", "title": "ClusterOperationInfo", "description": "\n

Returns information about a cluster operation.

", "type": "object", "properties": { "ClientRequestId": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "clientRequestId" }, "description": "\n

The ID of the API request that triggered this operation.

" } ] }, "ClusterArn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "clusterArn" }, "description": "\n

ARN of the cluster.

" } ] }, "CreationTime": { "allOf": [ { "$ref": "#/components/schemas/__timestampIso8601" }, { "xml": { "name": "creationTime" }, "description": "\n

The time that the operation was created.

" } ] }, "EndTime": { "allOf": [ { "$ref": "#/components/schemas/__timestampIso8601" }, { "xml": { "name": "endTime" }, "description": "\n

The time at which the operation finished.

" } ] }, "ErrorInfo": { "allOf": [ { "$ref": "#/components/schemas/ErrorInfo" }, { "xml": { "name": "errorInfo" }, "description": "\n

Describes the error if the operation fails.

" } ] }, "OperationArn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "operationArn" }, "description": "\n

ARN of the cluster operation.

" } ] }, "OperationState": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "operationState" }, "description": "\n

State of the cluster operation.

" } ] }, "OperationSteps": { "allOf": [ { "$ref": "#/components/schemas/__listOfClusterOperationStep" }, { "xml": { "name": "operationSteps" }, "description": "\n

Steps completed during the operation.

" } ] }, "OperationType": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "operationType" }, "description": "\n

Type of the cluster operation.

" } ] }, "SourceClusterInfo": { "allOf": [ { "$ref": "#/components/schemas/MutableClusterInfo" }, { "xml": { "name": "sourceClusterInfo" }, "description": "\n

Information about cluster attributes before a cluster is updated.

" } ] }, "TargetClusterInfo": { "allOf": [ { "$ref": "#/components/schemas/MutableClusterInfo" }, { "xml": { "name": "targetClusterInfo" }, "description": "\n

Information about cluster attributes after a cluster is updated.

" } ] } } }