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

ProgressEvent

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

Represents the current status of a resource operation request. For more information, see Managing resource operation requests in the Amazon Web Services Cloud Control API User Guide.

interface ProgressEvent {
ErrorCode?: HandlerErrorCode | null;
EventTime?: Date | number | null;
Identifier?: string | null;
Operation?: Operation | null;
OperationStatus?: OperationStatus | null;
RequestToken?: string | null;
ResourceModel?: string | null;
RetryAfter?: Date | number | null;
StatusMessage?: string | null;
TypeName?: string | null;
}

§Properties

§
ErrorCode?: HandlerErrorCode | null
[src]

For requests with a status of FAILED, the associated error code.

For error code definitions, see Handler error codes in the CloudFormation Command Line Interface User Guide for Extension Development.

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

When the resource operation request was initiated.

§
Identifier?: string | null
[src]

The primary identifier for the resource.

Note: In some cases, the resource identifier may be available before the resource operation has reached a status of SUCCESS.

§
Operation?: Operation | null
[src]

The resource operation type.

§
OperationStatus?: OperationStatus | null
[src]

The current status of the resource operation request.

  • PENDING: The resource operation hasn't yet started.
  • IN_PROGRESS: The resource operation is currently in progress.
  • SUCCESS: The resource operation has successfully completed.
  • FAILED: The resource operation has failed. Refer to the error code and status message for more information.
  • CANCEL_IN_PROGRESS: The resource operation is in the process of being canceled.
  • CANCEL_COMPLETE: The resource operation has been canceled.
§
RequestToken?: string | null
[src]

The unique token representing this resource operation request.

Use the RequestToken with GetResourceRequestStatus to return the current status of a resource operation request.

§
ResourceModel?: string | null
[src]

A JSON string containing the resource model, consisting of each resource property and its current value.

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

When to next request the status of this resource operation request.

§
StatusMessage?: string | null
[src]

Any message explaining the current status.

§
TypeName?: string | null
[src]

The name of the resource type used in the operation.