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

ResourceRequestStatusFilter

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

The filter criteria to use in determining the requests returned.

interface ResourceRequestStatusFilter {
Operations?: Operation[] | null;
OperationStatuses?: OperationStatus[] | null;
}

§Properties

§
Operations?: Operation[] | null
[src]

The operation types to include in the filter.

§
OperationStatuses?: OperationStatus[] | null
[src]

The operation statuses to include in the filter.

  • PENDING: The operation has been requested, but not yet initiated.
  • IN_PROGRESS: The operation is in progress.
  • SUCCESS: The operation completed.
  • FAILED: The operation failed.
  • CANCEL_IN_PROGRESS: The operation is in the process of being canceled.
  • CANCEL_COMPLETE: The operation has been canceled.