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

SessionIssuer

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

Provides information about the source and type of temporary security credentials that were issued to an entity.

interface SessionIssuer {
accountId?: string | null;
arn?: string | null;
principalId?: string | null;
type?: string | null;
userName?: string | null;
}

§Properties

§
accountId?: string | null
[src]

The unique identifier for the Amazon Web Services account that owns the entity that was used to get the credentials.

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the source account, IAM user, or role that was used to get the credentials.

§
principalId?: string | null
[src]

The unique identifier for the entity that was used to get the credentials.

§
type?: string | null
[src]

The source of the temporary security credentials, such as Root, IAMUser, or Role.

§
userName?: string | null
[src]

The name or alias of the user or role that issued the session. This value is null if the credentials were obtained from a root account that doesn't have an alias.