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

GrantListEntry

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

Contains information about a grant.

interface GrantListEntry {
Constraints?: GrantConstraints | null;
CreationDate?: Date | number | null;
GranteePrincipal?: string | null;
GrantId?: string | null;
IssuingAccount?: string | null;
KeyId?: string | null;
Name?: string | null;
Operations?: GrantOperation[] | null;
RetiringPrincipal?: string | null;
}

§Properties

§
Constraints?: GrantConstraints | null
[src]

A list of key-value pairs that must be present in the encryption context of certain subsequent operations that the grant allows.

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

The date and time when the grant was created.

§
GranteePrincipal?: string | null
[src]

The identity that gets the permissions in the grant.

The GranteePrincipal field in the ListGrants response usually contains the user or role designated as the grantee principal in the grant. However, when the grantee principal in the grant is an Amazon Web Services service, the GranteePrincipal field contains the service principal, which might represent several different grantee principals.

§
GrantId?: string | null
[src]

The unique identifier for the grant.

§
IssuingAccount?: string | null
[src]

The Amazon Web Services account under which the grant was issued.

§
KeyId?: string | null
[src]

The unique identifier for the KMS key to which the grant applies.

§
Name?: string | null
[src]

The friendly name that identifies the grant. If a name was provided in the "CreateGrant" request, that name is returned. Otherwise this value is null.

§
Operations?: GrantOperation[] | null
[src]

The list of operations permitted by the grant.

§
RetiringPrincipal?: string | null
[src]

The principal that can retire the grant.