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

Cluster

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

Returns information about a cluster.

interface Cluster {
ActiveOperationArn?: string | null;
ClusterArn?: string | null;
ClusterName?: string | null;
ClusterType?: ClusterType | null;
CreationTime?: Date | number | null;
CurrentVersion?: string | null;
Provisioned?: Provisioned | null;
Serverless?: Serverless | null;
State?: ClusterState | null;
StateInfo?: StateInfo | null;
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
ActiveOperationArn?: string | null
[src]

The Amazon Resource Name (ARN) that uniquely identifies a cluster operation.

§
ClusterArn?: string | null
[src]

The Amazon Resource Name (ARN) that uniquely identifies the cluster.

§
ClusterName?: string | null
[src]

The name of the cluster.

§
ClusterType?: ClusterType | null
[src]

Cluster Type.

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

The time when the cluster was created.

§
CurrentVersion?: string | null
[src]

The current version of the MSK cluster.

§
Provisioned?: Provisioned | null
[src]

Information about the provisioned cluster.

§
Serverless?: Serverless | null
[src]

Information about the serverless cluster.

§
State?: ClusterState | null
[src]

The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING_BROKER, and UPDATING.

§
StateInfo?: StateInfo | null
[src]

State Info for the Amazon MSK cluster.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Tags attached to the cluster.