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

StreamingSession

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

A streaming session is a virtual workstation created using a particular launch profile.

interface StreamingSession {
arn?: string | null;
automaticTerminationMode?: AutomaticTerminationMode | null;
backupMode?: SessionBackupMode | null;
createdAt?: Date | number | null;
createdBy?: string | null;
ec2InstanceType?: string | null;
launchProfileId?: string | null;
maxBackupsToRetain?: number | null;
ownedBy?: string | null;
sessionId?: string | null;
sessionPersistenceMode?: SessionPersistenceMode | null;
startedAt?: Date | number | null;
startedBy?: string | null;
startedFromBackupId?: string | null;
state?: StreamingSessionState | null;
statusCode?: StreamingSessionStatusCode | null;
statusMessage?: string | null;
stopAt?: Date | number | null;
stoppedAt?: Date | number | null;
stoppedBy?: string | null;
streamingImageId?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
terminateAt?: Date | number | null;
updatedAt?: Date | number | null;
updatedBy?: string | null;
volumeConfiguration?: VolumeConfiguration | null;
volumeRetentionMode?: VolumeRetentionMode | 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.

§
automaticTerminationMode?: AutomaticTerminationMode | null
[src]

Indicates if a streaming session created from this launch profile should be terminated automatically or retained without termination after being in a STOPPED state.

  • When ACTIVATED, the streaming session is scheduled for termination after being in the STOPPED state for the time specified in maxStoppedSessionLengthInMinutes.
  • When DEACTIVATED, the streaming session can remain in the STOPPED state indefinitely.

This parameter is only allowed when sessionPersistenceMode is ACTIVATED. When allowed, the default value for this parameter is DEACTIVATED.

§
backupMode?: SessionBackupMode | null
[src]

Shows the current backup setting of the session.

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

§
ec2InstanceType?: string | null
[src]

The EC2 Instance type used for the streaming session.

§
launchProfileId?: string | null
[src]

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

§
maxBackupsToRetain?: number | null
[src]

The maximum number of backups of a streaming session that you can have. When the maximum number of backups is reached, the oldest backup is deleted.

§
ownedBy?: string | null
[src]

The user ID of the user that owns the streaming session. The user that owns the session will be logging into the session and interacting with the virtual workstation.

§
sessionId?: string | null
[src]

The session ID.

§
sessionPersistenceMode?: SessionPersistenceMode | null
[src]

Determine if a streaming session created from this launch profile can configure persistent storage. This means that volumeConfiguration and automaticTerminationMode are configured.

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

The time the session entered START_IN_PROGRESS state.

§
startedBy?: string | null
[src]

The user ID of the user that started the streaming session.

§
startedFromBackupId?: string | null
[src]

The backup ID used to restore a streaming session.

§

The current state.

§

The status code.

§
statusMessage?: string | null
[src]

The status message for the streaming session.

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

The time the streaming session will automatically be stopped if the user doesn’t stop the session themselves.

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

The time the session entered STOP_IN_PROGRESS state.

§
stoppedBy?: string | null
[src]

The user ID of the user that stopped the streaming session.

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

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

The time the streaming session will automatically terminate if not terminated by the user.

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

§
volumeConfiguration?: VolumeConfiguration | null
[src]

Custom volume configuration for the root volumes that are attached to streaming sessions.

This parameter is only allowed when sessionPersistenceMode is ACTIVATED.

§
volumeRetentionMode?: VolumeRetentionMode | null
[src]

Determine if an EBS volume created from this streaming session will be backed up.