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

ResizeProgressMessage

import type { ResizeProgressMessage } from "https://aws-api.deno.dev/v0.3/services/redshift.ts?docs=full";

Describes the result of a cluster resize operation.

interface ResizeProgressMessage {
AvgResizeRateInMegaBytesPerSecond?: number | null;
DataTransferProgressPercent?: number | null;
ElapsedTimeInSeconds?: number | null;
EstimatedTimeToCompletionInSeconds?: number | null;
ImportTablesCompleted: string[];
ImportTablesInProgress: string[];
ImportTablesNotStarted: string[];
Message?: string | null;
ProgressInMegaBytes?: number | null;
ResizeType?: string | null;
Status?: string | null;
TargetClusterType?: string | null;
TargetEncryptionType?: string | null;
TargetNodeType?: string | null;
TargetNumberOfNodes?: number | null;
TotalResizeDataInMegaBytes?: number | null;
}

§Properties

§
AvgResizeRateInMegaBytesPerSecond?: number | null
[src]

The average rate of the resize operation over the last few minutes, measured in megabytes per second. After the resize operation completes, this value shows the average rate of the entire resize operation.

§
DataTransferProgressPercent?: number | null
[src]

The percent of data transferred from source cluster to target cluster.

§
ElapsedTimeInSeconds?: number | null
[src]

The amount of seconds that have elapsed since the resize operation began. After the resize operation completes, this value shows the total actual time, in seconds, for the resize operation.

§
EstimatedTimeToCompletionInSeconds?: number | null
[src]

The estimated time remaining, in seconds, until the resize operation is complete. This value is calculated based on the average resize rate and the estimated amount of data remaining to be processed. Once the resize operation is complete, this value will be 0.

§
ImportTablesCompleted: string[]
[src]

The names of tables that have been completely imported .

Valid Values: List of table names.

§
ImportTablesInProgress: string[]
[src]

The names of tables that are being currently imported.

Valid Values: List of table names.

§
ImportTablesNotStarted: string[]
[src]

The names of tables that have not been yet imported.

Valid Values: List of table names

§
Message?: string | null
[src]

An optional string to provide additional details about the resize action.

§
ProgressInMegaBytes?: number | null
[src]

While the resize operation is in progress, this value shows the current amount of data, in megabytes, that has been processed so far. When the resize operation is complete, this value shows the total amount of data, in megabytes, on the cluster, which may be more or less than TotalResizeDataInMegaBytes (the estimated total amount of data before resize).

§
ResizeType?: string | null
[src]

An enum with possible values of ClassicResize and ElasticResize. These values describe the type of resize operation being performed.

§
Status?: string | null
[src]

The status of the resize operation.

Valid Values: NONE | IN_PROGRESS | FAILED | SUCCEEDED | CANCELLING

§
TargetClusterType?: string | null
[src]

The cluster type after the resize operation is complete.

Valid Values: multi-node | single-node

§
TargetEncryptionType?: string | null
[src]

The type of encryption for the cluster after the resize is complete.

Possible values are KMS and None.

§
TargetNodeType?: string | null
[src]

The node type that the cluster will have after the resize operation is complete.

§
TargetNumberOfNodes?: number | null
[src]

The number of nodes that the cluster will have after the resize operation is complete.

§
TotalResizeDataInMegaBytes?: number | null
[src]

The estimated total amount of data, in megabytes, on the cluster before the resize operation began.