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

AppBlock

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

Describes an app block.

App blocks are an Amazon AppStream 2.0 resource that stores the details about the virtual hard disk in an S3 bucket. It also stores the setup script with details about how to mount the virtual hard disk. The virtual hard disk includes the application binaries and other files necessary to launch your applications. Multiple applications can be assigned to a single app block.

This is only supported for Elastic fleets.

interface AppBlock {
Arn: string;
CreatedTime?: Date | number | null;
Description?: string | null;
DisplayName?: string | null;
Name: string;
SetupScriptDetails: ScriptDetails;
SourceS3Location?: S3Location | null;
}

§Properties

§
Arn: string
[src]

The ARN of the app block.

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

The created time of the app block.

§
Description?: string | null
[src]

The description of the app block.

§
DisplayName?: string | null
[src]

The display name of the app block.

§
Name: string
[src]

The name of the app block.

§
SetupScriptDetails: ScriptDetails
[src]

The setup script details of the app block.

§
SourceS3Location?: S3Location | null
[src]

The source S3 location of the app block.