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

AccountQuota

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

Describes a quota for an Amazon Web Services account, for example the number of replication instances allowed.

interface AccountQuota {
AccountQuotaName?: string | null;
Max?: number | null;
Used?: number | null;
}

§Properties

§
AccountQuotaName?: string | null
[src]

The name of the DMS quota for this Amazon Web Services account.

§
Max?: number | null
[src]

The maximum allowed value for the quota.

§
Used?: number | null
[src]

The amount currently used toward the quota maximum.