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

VolumeConfiguration

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

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

This parameter is only allowed when sessionPersistenceMode is ACTIVATED.

interface VolumeConfiguration {
iops?: number | null;
size?: number | null;
throughput?: number | null;
}

§Properties

§
iops?: number | null
[src]

The number of I/O operations per second for the root volume that is attached to streaming session.

§
size?: number | null
[src]

The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.

§
throughput?: number | null
[src]

The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.