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

StagingArea

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

Staging information related to source server.

interface StagingArea {
errorMessage?: string | null;
stagingAccountID?: string | null;
stagingSourceServerArn?: string | null;
status?: ExtensionStatus | null;
}

§Properties

§
errorMessage?: string | null
[src]

Shows an error message that occurred when DRS tried to access the staging source server. In this case StagingArea$status will have value EXTENSION_ERROR

§
stagingAccountID?: string | null
[src]

Account ID of the account to which source server belongs. If this source server is extended - shows Account ID of staging source server.

§
stagingSourceServerArn?: string | null
[src]

Arn of the staging source server if this source server is extended

§
status?: ExtensionStatus | null
[src]

Status of Source server extension. Possible values: (a) NOT_EXTENDED - This is a source server that is replicating in the current account. (b) EXTENDED - Source server is extended from a staging source server. In this case, the value of stagingSourceServerArn is pointing to the Arn of the source server in the staging account. (c) EXTENSION_ERROR - Some issue occurred when accessing staging source server. In this case, errorMessage field will contain an error message that explains what happened.