Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClusterOperationInfo

import type { ClusterOperationInfo } from "https://aws-api.deno.dev/v0.4/services/kafka.ts?docs=full";

Returns information about a cluster operation.

interface ClusterOperationInfo {
ClientRequestId?: string | null;
ClusterArn?: string | null;
CreationTime?: Date | number | null;
EndTime?: Date | number | null;
ErrorInfo?: ErrorInfo | null;
OperationArn?: string | null;
OperationState?: string | null;
OperationSteps?: ClusterOperationStep[] | null;
OperationType?: string | null;
SourceClusterInfo?: MutableClusterInfo | null;
TargetClusterInfo?: MutableClusterInfo | null;
}

§Properties

§
ClientRequestId?: string | null
[src]

The ID of the API request that triggered this operation.

§
ClusterArn?: string | null
[src]

ARN of the cluster.

§
CreationTime?: Date | number | null
[src]

The time that the operation was created.

§
EndTime?: Date | number | null
[src]

The time at which the operation finished.

§
ErrorInfo?: ErrorInfo | null
[src]

Describes the error if the operation fails.

§
OperationArn?: string | null
[src]

ARN of the cluster operation.

§
OperationState?: string | null
[src]

State of the cluster operation.

§
OperationSteps?: ClusterOperationStep[] | null
[src]

Steps completed during the operation.

§
OperationType?: string | null
[src]

Type of the cluster operation.

§
SourceClusterInfo?: MutableClusterInfo | null
[src]

Information about cluster attributes before a cluster is updated.

§
TargetClusterInfo?: MutableClusterInfo | null
[src]

Information about cluster attributes after a cluster is updated.