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

Permission

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

Permission granted to a user, group, or resource to access a certain aspect of another user, group, or resource mailbox.

interface Permission {
GranteeId: string;
GranteeType: MemberType;
PermissionValues: PermissionType[];
}

§Properties

§
GranteeId: string
[src]

The identifier of the user, group, or resource to which the permissions are granted.

§
GranteeType: MemberType
[src]

The type of user, group, or resource referred to in GranteeId.

§
PermissionValues: PermissionType[]
[src]

The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox.