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

ServiceQuota

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

Information about a quota.

interface ServiceQuota {
Adjustable?: boolean | null;
ErrorReason?: ErrorReason | null;
GlobalQuota?: boolean | null;
Period?: QuotaPeriod | null;
QuotaArn?: string | null;
QuotaCode?: string | null;
QuotaName?: string | null;
ServiceCode?: string | null;
ServiceName?: string | null;
Unit?: string | null;
UsageMetric?: MetricInfo | null;
Value?: number | null;
}

§Properties

§
Adjustable?: boolean | null
[src]

Indicates whether the quota value can be increased.

§
ErrorReason?: ErrorReason | null
[src]

The error code and error reason.

§
GlobalQuota?: boolean | null
[src]

Indicates whether the quota is global.

§
Period?: QuotaPeriod | null
[src]

The period of time.

§
QuotaArn?: string | null
[src]

The Amazon Resource Name (ARN) of the quota.

§
QuotaCode?: string | null
[src]

The quota identifier.

§
QuotaName?: string | null
[src]

The quota name.

§
ServiceCode?: string | null
[src]

The service identifier.

§
ServiceName?: string | null
[src]

The service name.

§
Unit?: string | null
[src]

The unit of measurement.

§
UsageMetric?: MetricInfo | null
[src]

Information about the measurement.

§
Value?: number | null
[src]

The quota value.