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

UsageAllocation

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

Usage allocations allow you to split usage into buckets by tags.

Each UsageAllocation indicates the usage quantity for a specific set of tags.

interface UsageAllocation {
AllocatedUsageQuantity: number;
Tags?: Tag[] | null;
}

§Properties

§
AllocatedUsageQuantity: number
[src]

The total quantity allocated to this bucket of usage.

§
Tags?: Tag[] | null
[src]

The set of tags that define the bucket of usage. For the bucket of items with no tags, this parameter can be left out.