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

AutoScalingSettingsDescription

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

Represents the auto scaling settings for a global table or global secondary index.

interface AutoScalingSettingsDescription {
AutoScalingDisabled?: boolean | null;
AutoScalingRoleArn?: string | null;
MaximumUnits?: number | null;
MinimumUnits?: number | null;
ScalingPolicies?: AutoScalingPolicyDescription[] | null;
}

§Properties

§
AutoScalingDisabled?: boolean | null
[src]

Disabled auto scaling for this global table or global secondary index.

§
AutoScalingRoleArn?: string | null
[src]

Role ARN used for configuring the auto scaling policy.

§
MaximumUnits?: number | null
[src]

The maximum capacity units that a global table or global secondary index should be scaled up to.

§
MinimumUnits?: number | null
[src]

The minimum capacity units that a global table or global secondary index should be scaled down to.

§
ScalingPolicies?: AutoScalingPolicyDescription[] | null
[src]

Information about the scaling policies.