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

StudioComponent

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

A studio component represents a network resource to be used by a studio's users and workflows. A typical studio contains studio components for each of the following: render farm, Active Directory, licensing, and file system.

Access to a studio component is managed by specifying security groups for the resource, as well as its endpoint.

A studio component also has a set of initialization scripts that are returned by GetLaunchProfileInitialization. These initialization scripts run on streaming sessions when they start. They provide users with flexibility in controlling how the studio resources are configured on a streaming session.

interface StudioComponent {
arn?: string | null;
configuration?: StudioComponentConfiguration | null;
createdAt?: Date | number | null;
createdBy?: string | null;
description?: string | null;
ec2SecurityGroupIds?: string[] | null;
initializationScripts?: StudioComponentInitializationScript[] | null;
name?: string | null;
runtimeRoleArn?: string | null;
scriptParameters?: ScriptParameterKeyValue[] | null;
secureInitializationRoleArn?: string | null;
state?: StudioComponentState | null;
statusCode?: StudioComponentStatusCode | null;
statusMessage?: string | null;
studioComponentId?: string | null;
subtype?: StudioComponentSubtype | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
type?: StudioComponentType | null;
updatedAt?: Date | number | null;
updatedBy?: string | 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.

§
configuration?: StudioComponentConfiguration | null
[src]

The configuration of the studio component, based on component type.

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

§
description?: string | null
[src]

A human-readable description for the studio component resource.

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

The EC2 security groups that control access to the studio component.

§
initializationScripts?: StudioComponentInitializationScript[] | null
[src]

Initialization scripts for studio components.

§
name?: string | null
[src]

A friendly name for the studio component resource.

§
runtimeRoleArn?: string | null
[src]

An IAM role attached to a Studio Component that gives the studio component access to Amazon Web Services resources at anytime while the instance is running.

§
scriptParameters?: ScriptParameterKeyValue[] | null
[src]

Parameters for the studio component scripts.

§
secureInitializationRoleArn?: string | null
[src]

An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to Amazon Web Services resources when the system initialization script runs.

§

The current state.

§
statusCode?: StudioComponentStatusCode | null
[src]

The status code.

§
statusMessage?: string | null
[src]

The status message for the studio component.

§
studioComponentId?: string | null
[src]

The unique identifier for a studio component resource.

§

The specific subtype of a studio component.

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

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

§

The type of the studio component.

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