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/opensearch.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.