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

BatchPermissionsRequestEntry

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

A permission to a resource granted by batch operation to the principal.

interface BatchPermissionsRequestEntry {
Id: string;
Permissions?: Permission[] | null;
PermissionsWithGrantOption?: Permission[] | null;
Principal?: DataLakePrincipal | null;
Resource?: Resource | null;
}

§Properties

§
Id: string
[src]

A unique identifier for the batch permissions request entry.

§
Permissions?: Permission[] | null
[src]

The permissions to be granted.

§
PermissionsWithGrantOption?: Permission[] | null
[src]

Indicates if the option to pass permissions is granted.

§
Principal?: DataLakePrincipal | null
[src]

The principal to be granted a permission.

§
Resource?: Resource | null
[src]

The resource to which the principal is to be granted a permission.