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

SAMLOptionsOutput

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

Describes the SAML application configured for the domain.

interface SAMLOptionsOutput {
Enabled?: boolean | null;
Idp?: SAMLIdp | null;
RolesKey?: string | null;
SessionTimeoutMinutes?: number | null;
SubjectKey?: string | null;
}

§Properties

§
Enabled?: boolean | null
[src]

True if SAML is enabled.

§
Idp?: SAMLIdp | null
[src]

Describes the SAML Identity Provider's information.

§
RolesKey?: string | null
[src]

The key used for matching the SAML Roles attribute.

§
SessionTimeoutMinutes?: number | null
[src]

The duration, in minutes, after which a user session becomes inactive.

§
SubjectKey?: string | null
[src]

The key used for matching the SAML Subject attribute.