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.4/services/appstream.ts?docs=full";

Specifies an entitlement. Entitlements control access to specific applications within a stack, based on user attributes. Entitlements apply to SAML 2.0 federated user identities. Amazon AppStream 2.0 user pool and streaming URL users are entitled to all applications in a stack. Entitlements don't apply to the desktop stream view application, or to applications managed by a dynamic app provider using the Dynamic Application Framework.

interface Entitlement {
AppVisibility: AppVisibility;
Attributes: EntitlementAttribute[];
CreatedTime?: Date | number | null;
Description?: string | null;
LastModifiedTime?: Date | number | null;
Name: string;
StackName: string;
}

§Properties

§
AppVisibility: AppVisibility
[src]

Specifies whether all or selected apps are entitled.

§

The attributes of the entitlement.

§
CreatedTime?: Date | number | null
[src]

The time when the entitlement was created.

§
Description?: string | null
[src]

The description of the entitlement.

§
LastModifiedTime?: Date | number | null
[src]

The time when the entitlement was last modified.

§
Name: string
[src]

The name of the entitlement.

§
StackName: string
[src]

The name of the stack with which the entitlement is associated.