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

BlockDeviceMapping

import type { BlockDeviceMapping } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";

Describes a block device mapping. This data type maps directly to the Amazon EC2 BlockDeviceMapping data type.

interface BlockDeviceMapping {
DeviceName?: string | null;
Ebs?: EbsBlockDevice | null;
NoDevice?: string | null;
VirtualName?: string | null;
}

§Properties

§
DeviceName?: string | null
[src]

The device name that is exposed to the instance, such as /dev/sdh. For the root device, you can use the explicit device name or you can set this parameter to ROOT_DEVICE and AWS OpsWorks Stacks will provide the correct device name.

§
Ebs?: EbsBlockDevice | null
[src]

An EBSBlockDevice that defines how to configure an Amazon EBS volume when the instance is launched.

§
NoDevice?: string | null
[src]

Suppresses the specified device included in the AMI's block device mapping.

§
VirtualName?: string | null
[src]

The virtual device name. For more information, see BlockDeviceMapping.