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

StreamingImage

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

Represents a streaming image resource.

Streaming images are used by studio users to select which operating system and software they want to use in a Nimble Studio streaming session.

Amazon provides a number of streaming images that include popular 3rd-party software.

You can create your own streaming images using an Amazon EC2 machine image that you create for this purpose. You can also include software that your users require.

interface StreamingImage {
arn?: string | null;
description?: string | null;
ec2ImageId?: string | null;
encryptionConfiguration?: StreamingImageEncryptionConfiguration | null;
eulaIds?: string[] | null;
name?: string | null;
owner?: string | null;
platform?: string | null;
state?: StreamingImageState | null;
statusCode?: StreamingImageStatusCode | null;
statusMessage?: string | null;
streamingImageId?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| 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.

§
description?: string | null
[src]

A human-readable description of the streaming image.

§
ec2ImageId?: string | null
[src]

The ID of an EC2 machine image with which to create the streaming image.

§
encryptionConfiguration?: StreamingImageEncryptionConfiguration | null
[src]

The encryption configuration.

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

The list of EULAs that must be accepted before a Streaming Session can be started using this streaming image.

§
name?: string | null
[src]

A friendly name for a streaming image resource.

§
owner?: string | null
[src]

The owner of the streaming image, either the studioId that contains the streaming image, or amazon for images that are provided by Amazon Nimble Studio.

§
platform?: string | null
[src]

The platform of the streaming image, either Windows or Linux.

§

The current state.

§
statusCode?: StreamingImageStatusCode | null
[src]

The status code.

§
statusMessage?: string | null
[src]

The status message for the streaming image.

§
streamingImageId?: string | null
[src]

The ID of the streaming image.

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

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