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

Entitlement

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

Describes a resource entitled for use with a license.

interface Entitlement {
AllowCheckIn?: boolean | null;
MaxCount?: number | null;
Name: string;
Overage?: boolean | null;
Value?: string | null;
}

§Properties

§
AllowCheckIn?: boolean | null
[src]

Indicates whether check-ins are allowed.

§
MaxCount?: number | null
[src]

Maximum entitlement count. Use if the unit is not None.

§
Name: string
[src]

Entitlement name.

§
Overage?: boolean | null
[src]

Indicates whether overages are allowed.

§

Entitlement unit.

§
Value?: string | null
[src]

Entitlement resource. Use only if the unit is None.