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

ImpersonationRule

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

The rules for the given impersonation role.

interface ImpersonationRule {
Description?: string | null;
Effect: AccessEffect;
ImpersonationRuleId: string;
Name?: string | null;
NotTargetUsers?: string[] | null;
TargetUsers?: string[] | null;
}

§Properties

§
Description?: string | null
[src]

The rule description.

§

The effect of the rule when it matches the input. Allowed effect values are ALLOW or DENY.

§
ImpersonationRuleId: string
[src]

The identifier of the rule.

§
Name?: string | null
[src]

The rule name.

§
NotTargetUsers?: string[] | null
[src]

A list of user IDs that don't match the rule.

§
TargetUsers?: string[] | null
[src]

A list of user IDs that match the rule.