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

StartDeviceAuthorizationResponse

import type { StartDeviceAuthorizationResponse } from "https://aws-api.deno.dev/v0.4/services/ssooidc.ts?docs=full";
interface StartDeviceAuthorizationResponse {
deviceCode?: string | null;
expiresIn?: number | null;
interval?: number | null;
userCode?: string | null;
verificationUri?: string | null;
verificationUriComplete?: string | null;
}

§Properties

§
deviceCode?: string | null
[src]

The short-lived code that is used by the device when polling for a session token.

§
expiresIn?: number | null
[src]

Indicates the number of seconds in which the verification code will become invalid.

§
interval?: number | null
[src]

Indicates the number of seconds the client must wait between attempts when polling for a session.

§
userCode?: string | null
[src]

A one-time user verification code. This is needed to authorize an in-use device.

§
verificationUri?: string | null
[src]

The URI of the verification page that takes the userCode to authorize the device.

§
verificationUriComplete?: string | null
[src]

An alternate URL that the client can use to automatically launch a browser. This process skips the manual step in which the user visits the verification page and enters their code.