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

FederationParameters

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

Configuration information when authentication mode is FEDERATED.

interface FederationParameters {
applicationCallBackURL?: string | null;
attributeMap?: {
[key: string]: string | null | undefined;
}
| null;
federationProviderName?: string | null;
federationURN?: string | null;
samlMetadataDocument?: string | null;
samlMetadataURL?: string | null;
}

§Properties

§
applicationCallBackURL?: string | null
[src]

The redirect or sign-in URL that should be entered into the SAML 2.0 compliant identity provider configuration (IdP).

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

SAML attribute name and value. The name must always be Email and the value should be set to the attribute definition in which user email is set. For example, name would be Email and value http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress. Please check your SAML 2.0 compliant identity provider (IdP) documentation for details.

§
federationProviderName?: string | null
[src]

Name of the identity provider (IdP).

§
federationURN?: string | null
[src]

The Uniform Resource Name (URN). Also referred as Service Provider URN or Audience URI or Service Provider Entity ID.

§
samlMetadataDocument?: string | null
[src]

SAML 2.0 Metadata document from identity provider (IdP).

§
samlMetadataURL?: string | null
[src]

Provide the metadata URL from your SAML 2.0 compliant identity provider (IdP).