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

Studio

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

Represents a studio resource.

A studio is the core resource used with Nimble Studio. You must create a studio first, before any other resource type can be created. All other resources you create and manage in Nimble Studio are contained within a studio.

When creating a studio, you must provides two IAM roles for use with the Nimble Studio portal. These roles are assumed by your users when they log in to the Nimble Studio portal via IAM Identity Center and your identity source.

The user role must have the AmazonNimbleStudio-StudioUser managed policy attached for the portal to function properly.

The admin role must have the AmazonNimbleStudio-StudioAdmin managed policy attached for the portal to function properly.

Your studio roles must trust the identity.nimble.amazonaws.com service principal to function properly.

interface Studio {
adminRoleArn?: string | null;
arn?: string | null;
createdAt?: Date | number | null;
displayName?: string | null;
homeRegion?: string | null;
ssoClientId?: string | null;
state?: StudioState | null;
statusCode?: StudioStatusCode | null;
statusMessage?: string | null;
studioEncryptionConfiguration?: StudioEncryptionConfiguration | null;
studioId?: string | null;
studioName?: string | null;
studioUrl?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
updatedAt?: Date | number | null;
userRoleArn?: string | null;
}

§Properties

§
adminRoleArn?: string | null
[src]

The IAM role that studio admins assume when logging in to the Nimble Studio portal.

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) that is assigned to a studio resource and uniquely identifies it. ARNs are unique across all Regions.

§
createdAt?: Date | number | null
[src]

The ISO timestamp in seconds for when the resource was created.

§
displayName?: string | null
[src]

A friendly name for the studio.

§
homeRegion?: string | null
[src]

The Amazon Web Services Region where the studio resource is located.

§
ssoClientId?: string | null
[src]

The IAM Identity Center application client ID used to integrate with IAM Identity Center. This ID allows IAM Identity Center users to log in to Nimble Studio portal.

§
state?: StudioState | null
[src]

The current state of the studio resource.

§
statusCode?: StudioStatusCode | null
[src]

Status codes that provide additional detail on the studio state.

§
statusMessage?: string | null
[src]

Additional detail on the studio state.

§
studioEncryptionConfiguration?: StudioEncryptionConfiguration | null
[src]

Configuration of the encryption method that is used for the studio.

§
studioId?: string | null
[src]

The unique identifier for a studio resource. In Nimble Studio, all other resources are contained in a studio resource.

§
studioName?: string | null
[src]

The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.

§
studioUrl?: string | null
[src]

The address of the web page for the studio.

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

A collection of labels, in the form of key-value pairs, that apply to this resource.

§
updatedAt?: Date | number | null
[src]

The ISO timestamp in seconds for when the resource was updated.

§
userRoleArn?: string | null
[src]

The IAM role that studio users assume when logging in to the Nimble Studio portal.