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

CreateStudioRequest

import type { CreateStudioRequest } from "https://aws-api.deno.dev/v0.4/services/nimble.ts?docs=full";
interface CreateStudioRequest {
adminRoleArn: string;
clientToken?: string | null;
displayName: string;
studioEncryptionConfiguration?: StudioEncryptionConfiguration | null;
studioName: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
userRoleArn: string;
}

§Properties

§
adminRoleArn: string
[src]

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

§
clientToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.

§
displayName: string
[src]

A friendly name for the studio.

§
studioEncryptionConfiguration?: StudioEncryptionConfiguration | null
[src]

The studio encryption configuration.

§
studioName: string
[src]

The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.

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

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

§
userRoleArn: string
[src]

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