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

EcsTaskDetails

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

Contains information about the task in an ECS cluster.

interface EcsTaskDetails {
Arn?: string | null;
Containers?: Container[] | null;
DefinitionArn?: string | null;
Group?: string | null;
StartedAt?: Date | number | null;
StartedBy?: string | null;
Tags?: Tag[] | null;
TaskCreatedAt?: Date | number | null;
Version?: string | null;
Volumes?: Volume[] | null;
}

§Properties

§
Arn?: string | null
[src]

The Amazon Resource Name (ARN) of the task.

§
Containers?: Container[] | null
[src]

The containers that's associated with the task.

§
DefinitionArn?: string | null
[src]

The ARN of the task definition that creates the task.

§
Group?: string | null
[src]

The name of the task group that's associated with the task.

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

The Unix timestamp for the time when the task started.

§
StartedBy?: string | null
[src]

Contains the tag specified when a task is started.

§
Tags?: Tag[] | null
[src]

The tags of the ECS Task.

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

The Unix timestamp for the time when the task was created.

§
Version?: string | null
[src]

The version counter for the task.

§
Volumes?: Volume[] | null
[src]

The list of data volume definitions for the task.