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

ScalingConfigurationInfo

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

Shows the scaling configuration for an Aurora DB cluster in serverless DB engine mode.

For more information, see Using Amazon Aurora Serverless v1 in the Amazon Aurora User Guide.

interface ScalingConfigurationInfo {
AutoPause?: boolean | null;
MaxCapacity?: number | null;
MinCapacity?: number | null;
SecondsBeforeTimeout?: number | null;
SecondsUntilAutoPause?: number | null;
TimeoutAction?: string | null;
}

§Properties

§
AutoPause?: boolean | null
[src]

A value that indicates whether automatic pause is allowed for the Aurora DB cluster in serverless DB engine mode.

When the value is set to false for an Aurora Serverless v1 DB cluster, the DB cluster automatically resumes.

§
MaxCapacity?: number | null
[src]

The maximum capacity for an Aurora DB cluster in serverless DB engine mode.

§
MinCapacity?: number | null
[src]

The minimum capacity for an Aurora DB cluster in serverless DB engine mode.

§
SecondsBeforeTimeout?: number | null
[src]

The number of seconds before scaling times out. What happens when an attempted scaling action times out is determined by the TimeoutAction setting.

§
SecondsUntilAutoPause?: number | null
[src]

The remaining amount of time, in seconds, before the Aurora DB cluster in serverless mode is paused. A DB cluster can be paused only when it's idle (it has no connections).

§
TimeoutAction?: string | null
[src]

The action that occurs when Aurora times out while attempting to change the capacity of an Aurora Serverless v1 cluster. The value is either ForceApplyCapacityChange or RollbackCapacityChange.

ForceApplyCapacityChange, the default, sets the capacity to the specified value as soon as possible.

RollbackCapacityChange ignores the capacity change if a scaling point isn't found in the timeout period.