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

ResizeClusterMessage

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

Describes a resize cluster operation. For example, a scheduled action to run the ResizeCluster API operation.

interface ResizeClusterMessage {
Classic?: boolean | null;
ClusterIdentifier: string;
ClusterType?: string | null;
NodeType?: string | null;
NumberOfNodes?: number | null;
ReservedNodeId?: string | null;
TargetReservedNodeOfferingId?: string | null;
}

§Properties

§
Classic?: boolean | null
[src]

A boolean value indicating whether the resize operation is using the classic resize process. If you don't provide this parameter or set the value to false, the resize type is elastic.

§
ClusterIdentifier: string
[src]

The unique identifier for the cluster to resize.

§
ClusterType?: string | null
[src]

The new cluster type for the specified cluster.

§
NodeType?: string | null
[src]

The new node type for the nodes you are adding. If not specified, the cluster's current node type is used.

§
NumberOfNodes?: number | null
[src]

The new number of nodes for the cluster. If not specified, the cluster's current number of nodes is used.

§
ReservedNodeId?: string | null
[src]

The identifier of the reserved node.

§
TargetReservedNodeOfferingId?: string | null
[src]

The identifier of the target reserved node offering.