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

StudioMembership

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

A studio member is an association of a user from your studio identity source to elevated permissions that they are granted in the studio.

When you add a user to your studio using the Nimble Studio console, they are given access to the studio's IAM Identity Center application and are given access to log in to the Nimble Studio portal. These users have the permissions provided by the studio's user IAM role and do not appear in the studio membership collection. Only studio admins appear in studio membership.

When you add a user to studio membership with the ADMIN persona, upon logging in to the Nimble Studio portal, they are granted permissions specified by the Studio's Admin IAM role.

interface StudioMembership {
identityStoreId?: string | null;
persona?: StudioPersona | null;
principalId?: string | null;
sid?: string | null;
}

§Properties

§
identityStoreId?: string | null
[src]

The ID of the identity store.

§
persona?: StudioPersona | null
[src]

The persona.

§
principalId?: string | null
[src]

The principal ID.

§
sid?: string | null
[src]

The Active Directory Security Identifier for this user, if available.