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

SubmitTaskStateChangeRequest

import type { SubmitTaskStateChangeRequest } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";
interface SubmitTaskStateChangeRequest {
attachments?: AttachmentStateChange[] | null;
cluster?: string | null;
containers?: ContainerStateChange[] | null;
executionStoppedAt?: Date | number | null;
managedAgents?: ManagedAgentStateChange[] | null;
pullStartedAt?: Date | number | null;
pullStoppedAt?: Date | number | null;
reason?: string | null;
status?: string | null;
task?: string | null;
}

§Properties

§
attachments?: AttachmentStateChange[] | null
[src]

Any attachments associated with the state change request.

§
cluster?: string | null
[src]

The short name or full Amazon Resource Name (ARN) of the cluster that hosts the task.

§
containers?: ContainerStateChange[] | null
[src]

Any containers that's associated with the state change request.

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

The Unix timestamp for the time when the task execution stopped.

§
managedAgents?: ManagedAgentStateChange[] | null
[src]

The details for the managed agent that's associated with the task.

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

The Unix timestamp for the time when the container image pull started.

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

The Unix timestamp for the time when the container image pull completed.

§
reason?: string | null
[src]

The reason for the state change request.

§
status?: string | null
[src]

The status of the state change request.

§
task?: string | null
[src]

The task ID or full ARN of the task in the state change request.