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

UsageLimit

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

Describes a usage limit object for a cluster.

interface UsageLimit {
Amount?: number | null;
BreachAction?: UsageLimitBreachAction | null;
ClusterIdentifier?: string | null;
FeatureType?: UsageLimitFeatureType | null;
LimitType?: UsageLimitLimitType | null;
Period?: UsageLimitPeriod | null;
Tags: Tag[];
UsageLimitId?: string | null;
}

§Properties

§
Amount?: number | null
[src]

The limit amount. If time-based, this amount is in minutes. If data-based, this amount is in terabytes (TB).

§
BreachAction?: UsageLimitBreachAction | null
[src]

The action that Amazon Redshift takes when the limit is reached. Possible values are:

  • log - To log an event in a system table. The default is log.
  • emit-metric - To emit CloudWatch metrics.
  • disable - To disable the feature until the next usage period begins.
§
ClusterIdentifier?: string | null
[src]

The identifier of the cluster with a usage limit.

§
FeatureType?: UsageLimitFeatureType | null
[src]

The Amazon Redshift feature to which the limit applies.

§
LimitType?: UsageLimitLimitType | null
[src]

The type of limit. Depending on the feature type, this can be based on a time duration or data size.

§
Period?: UsageLimitPeriod | null
[src]

The time period that the amount applies to. A weekly period begins on Sunday. The default is monthly.

§
Tags: Tag[]
[src]

A list of tag instances.

§
UsageLimitId?: string | null
[src]

The identifier of the usage limit.