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

SessionData

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

Information about the session.

interface SessionData {
description?: string | null;
name: string;
sessionArn: string;
sessionId: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
description?: string | null
[src]

The description of the session.

§
name: string
[src]

The name of the session.

§
sessionArn: string
[src]

The Amazon Resource Name (ARN) of the session.

§
sessionId: string
[src]

The identifier of the session.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags used to organize, track, or control access for this resource.