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

IamActionDefinition

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

The AWS Identity and Access Management (IAM) action definition details.

interface IamActionDefinition {
Groups?: string[] | null;
PolicyArn: string;
Roles?: string[] | null;
Users?: string[] | null;
}

§Properties

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

A list of groups to be attached. There must be at least one group.

§
PolicyArn: string
[src]

The Amazon Resource Name (ARN) of the policy to be attached.

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

A list of roles to be attached. There must be at least one role.

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

A list of users to be attached. There must be at least one user.