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

BrokerEBSVolumeInfo

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

Specifies the EBS volume upgrade information. The broker identifier must be set to the keyword ALL. This means the changes apply to all the brokers in the cluster.

interface BrokerEBSVolumeInfo {
KafkaBrokerNodeId: string;
ProvisionedThroughput?: ProvisionedThroughput | null;
VolumeSizeGB?: number | null;
}

§Properties

§
KafkaBrokerNodeId: string
[src]

The ID of the broker to update.

§
ProvisionedThroughput?: ProvisionedThroughput | null
[src]

EBS volume provisioned throughput information.

§
VolumeSizeGB?: number | null
[src]

Size of the EBS volume to update.