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

HomeRegionControl

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

A home region control is an object that specifies the home region for an account, with some additional information. It contains a target (always of type ACCOUNT), an ID, and a time at which the home region was set.

interface HomeRegionControl {
ControlId?: string | null;
HomeRegion?: string | null;
RequestedTime?: Date | number | null;
Target?: Target | null;
}

§Properties

§
ControlId?: string | null
[src]

A unique identifier that's generated for each home region control. It's always a string that begins with "hrc-" followed by 12 lowercase letters and numbers.

§
HomeRegion?: string | null
[src]

The AWS Region that's been set as home region. For example, "us-west-2" or "eu-central-1" are valid home regions.

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

A timestamp representing the time when the customer called CreateHomeregionControl and set the home region for the account.

§
Target?: Target | null
[src]

The target parameter specifies the identifier to which the home region is applied, which is always an ACCOUNT. It applies the home region to the current ACCOUNT.