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

AwsRedshiftClusterRestoreStatus

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

Information about the status of a cluster restore action. It only applies if the cluster was created by restoring a snapshot.

interface AwsRedshiftClusterRestoreStatus {
CurrentRestoreRateInMegaBytesPerSecond?: number | null;
ElapsedTimeInSeconds?: number | null;
EstimatedTimeToCompletionInSeconds?: number | null;
ProgressInMegaBytes?: number | null;
SnapshotSizeInMegaBytes?: number | null;
Status?: string | null;
}

§Properties

§
CurrentRestoreRateInMegaBytesPerSecond?: number | null
[src]

The number of megabytes per second being transferred from the backup storage. Returns the average rate for a completed backup.

This field is only updated when you restore to DC2 and DS2 node types.

§
ElapsedTimeInSeconds?: number | null
[src]

The amount of time an in-progress restore has been running, or the amount of time it took a completed restore to finish.

This field is only updated when you restore to DC2 and DS2 node types.

§
EstimatedTimeToCompletionInSeconds?: number | null
[src]

The estimate of the time remaining before the restore is complete. Returns 0 for a completed restore.

This field is only updated when you restore to DC2 and DS2 node types.

§
ProgressInMegaBytes?: number | null
[src]

The number of megabytes that were transferred from snapshot storage.

This field is only updated when you restore to DC2 and DS2 node types.

§
SnapshotSizeInMegaBytes?: number | null
[src]

The size of the set of snapshot data that was used to restore the cluster.

This field is only updated when you restore to DC2 and DS2 node types.

§
Status?: string | null
[src]

The status of the restore action.

Valid values: starting | restoring | completed | failed