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

AssertionAttributes

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

A structure that defines which attributes in the IdP assertion are to be used to define information about the users authenticated by the IdP to use the workspace.

interface AssertionAttributes {
email?: string | null;
groups?: string | null;
login?: string | null;
name?: string | null;
org?: string | null;
role?: string | null;
}

§Properties

§
email?: string | null
[src]

The name of the attribute within the SAML assertion to use as the email names for SAML users.

§
groups?: string | null
[src]

The name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups.

§
login?: string | null
[src]

The name of the attribute within the SAML assertion to use as the login names for SAML users.

§
name?: string | null
[src]

The name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users.

§
org?: string | null
[src]

The name of the attribute within the SAML assertion to use as the user full "friendly" names for the users' organizations.

§
role?: string | null
[src]

The name of the attribute within the SAML assertion to use as the user roles.