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

LaunchProfile

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

A launch profile controls your artist workforce’s access to studio components, like compute farms, shared file systems, managed file systems, and license server configurations, as well as instance types and Amazon Machine Images (AMIs).

Studio administrators create launch profiles in the Nimble Studio console. Artists can use their launch profiles to launch an instance from the Nimble Studio portal. Each user’s launch profile defines how they can launch a streaming session. By default, studio admins can use all launch profiles.

interface LaunchProfile {
arn?: string | null;
createdAt?: Date | number | null;
createdBy?: string | null;
description?: string | null;
ec2SubnetIds?: string[] | null;
launchProfileId?: string | null;
launchProfileProtocolVersions?: string[] | null;
name?: string | null;
state?: LaunchProfileState | null;
statusCode?: LaunchProfileStatusCode | null;
statusMessage?: string | null;
streamConfiguration?: StreamConfiguration | null;
studioComponentIds?: string[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
updatedAt?: Date | number | null;
updatedBy?: string | null;
validationResults?: ValidationResult[] | null;
}

§Properties

§
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.

§
createdBy?: string | null
[src]

The user ID of the user that created the launch profile.

§
description?: string | null
[src]

A human-readable description of the launch profile.

§
ec2SubnetIds?: string[] | null
[src]

Unique identifiers for a collection of EC2 subnets.

§
launchProfileId?: string | null
[src]

The ID of the launch profile used to control access from the streaming session.

§
launchProfileProtocolVersions?: string[] | null
[src]

The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".

§
name?: string | null
[src]

A friendly name for the launch profile.

§

The current state.

§
statusCode?: LaunchProfileStatusCode | null
[src]

The status code.

§
statusMessage?: string | null
[src]

The status message for the launch profile.

§
streamConfiguration?: StreamConfiguration | null
[src]

A configuration for a streaming session.

§
studioComponentIds?: string[] | null
[src]

Unique identifiers for a collection of studio components that can be used with this launch profile.

§
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.

§
updatedBy?: string | null
[src]

The user ID of the user that most recently updated the resource.

§
validationResults?: ValidationResult[] | null
[src]

The list of the latest validation results.