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

BucketBundle

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

Describes the specifications of a bundle that can be applied to an Amazon Lightsail bucket.

A bucket bundle specifies the monthly cost, storage space, and data transfer quota for a bucket.

interface BucketBundle {
bundleId?: string | null;
isActive?: boolean | null;
name?: string | null;
price?: number | null;
storagePerMonthInGb?: number | null;
transferPerMonthInGb?: number | null;
}

§Properties

§
bundleId?: string | null
[src]

The ID of the bundle.

§
isActive?: boolean | null
[src]

Indicates whether the bundle is active. Use for a new or existing bucket.

§
name?: string | null
[src]

The name of the bundle.

§
price?: number | null
[src]

The monthly price of the bundle, in US dollars.

§
storagePerMonthInGb?: number | null
[src]

The storage size of the bundle, in GB.

§
transferPerMonthInGb?: number | null
[src]

The monthly network transfer quota of the bundle.