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

UpdateStorageRequest

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

Request object for UpdateStorage api. Its used to update the storage attributes for the cluster.

interface UpdateStorageRequest {
ClusterArn: string;
CurrentVersion: string;
ProvisionedThroughput?: ProvisionedThroughput | null;
StorageMode?: StorageMode | null;
VolumeSizeGB?: number | null;
}

§Properties

§
ClusterArn: string
[src]

The Amazon Resource Name (ARN) of the cluster to be updated.

§
CurrentVersion: string
[src]

The version of cluster to update from. A successful operation will then generate a new version.

§
ProvisionedThroughput?: ProvisionedThroughput | null
[src]

EBS volume provisioned throughput information.

§
StorageMode?: StorageMode | null
[src]

Controls storage mode for supported storage tiers.

§
VolumeSizeGB?: number | null
[src]

size of the EBS volume to update.