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

OperationSummary

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

Provides summary information for an operation that occurred on an App Runner service.

interface OperationSummary {
EndedAt?: Date | number | null;
Id?: string | null;
StartedAt?: Date | number | null;
Status?: OperationStatus | null;
TargetArn?: string | null;
Type?: OperationType | null;
UpdatedAt?: Date | number | null;
}

§Properties

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

The time when the operation ended. It's in the Unix time stamp format.

§
Id?: string | null
[src]

A unique ID of this operation. It's unique in the scope of the App Runner service.

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

The time when the operation started. It's in the Unix time stamp format.

§
Status?: OperationStatus | null
[src]

The current state of the operation.

§
TargetArn?: string | null
[src]

The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).

§
Type?: OperationType | null
[src]

The type of operation. It indicates a specific action that occured.

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

The time when the operation was last updated. It's in the Unix time stamp format.