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

AwsEcsTaskDetails

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

Provides details about a task in a cluster.

interface AwsEcsTaskDetails {
ClusterArn?: string | null;
Containers?: AwsEcsContainerDetails[] | null;
CreatedAt?: string | null;
Group?: string | null;
StartedAt?: string | null;
StartedBy?: string | null;
TaskDefinitionArn?: string | null;
Version?: string | null;
Volumes?: AwsEcsTaskVolumeDetails[] | null;
}

§Properties

§
ClusterArn?: string | null
[src]

The Amazon Resource Name (ARN) of the cluster that hosts the task.

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

The containers that are associated with the task.

§
CreatedAt?: string | null
[src]

The Unix timestamp for the time when the task was created. More specifically, it's for the time when the task entered the PENDING state.

§
Group?: string | null
[src]

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

§
StartedAt?: string | null
[src]

The Unix timestamp for the time when the task started. More specifically, it's for the time when the task transitioned from the PENDING state to the RUNNING state.

§
StartedBy?: string | null
[src]

The tag specified when a task is started. If an Amazon ECS service started the task, the startedBy parameter contains the deployment ID of that service.

§
TaskDefinitionArn?: string | null
[src]

The ARN of the task definition that creates the task.

§
Version?: string | null
[src]

The version counter for the task.

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

Details about the data volume that is used in a task definition.