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

ChangeProgressStatusDetails

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

The progress details of a specific domain configuration change.

interface ChangeProgressStatusDetails {
ChangeId?: string | null;
ChangeProgressStages?: ChangeProgressStage[] | null;
CompletedProperties?: string[] | null;
PendingProperties?: string[] | null;
StartTime?: Date | number | null;
Status?: OverallChangeStatus | null;
TotalNumberOfStages?: number | null;
}

§Properties

§
ChangeId?: string | null
[src]

The unique change identifier associated with a specific domain configuration change.

§
ChangeProgressStages?: ChangeProgressStage[] | null
[src]

The specific stages that the domain is going through to perform the configuration change.

§
CompletedProperties?: string[] | null
[src]

The list of properties involved in the domain configuration change that are completed.

§
PendingProperties?: string[] | null
[src]

The list of properties involved in the domain configuration change that are still in pending.

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

The time at which the configuration change is made on the domain.

§
Status?: OverallChangeStatus | null
[src]

The overall status of the domain configuration change. This field can take the following values: PENDING, PROCESSING, COMPLETED and FAILED

§
TotalNumberOfStages?: number | null
[src]

The total number of stages required for the configuration change.