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

Region

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

This is a structure that expresses the Region for a given account, consisting of a name and opt-in status.

interface Region {
RegionName?: string | null;
RegionOptStatus?: RegionOptStatus | null;
}

§Properties

§
RegionName?: string | null
[src]

The Region code of a given Region (for example, us-east-1).

§
RegionOptStatus?: RegionOptStatus | null
[src]

One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).