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

ECSTarget

import type { ECSTarget } from "https://aws-api.deno.dev/v0.3/services/codedeploy.ts?docs=full";

Information about the target of an Amazon ECS deployment.

interface ECSTarget {
deploymentId?: string | null;
lastUpdatedAt?: Date | number | null;
lifecycleEvents?: LifecycleEvent[] | null;
status?: TargetStatus | null;
targetArn?: string | null;
targetId?: string | null;
taskSetsInfo?: ECSTaskSet[] | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

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

The date and time when the target Amazon ECS application was updated by a deployment.

§
lifecycleEvents?: LifecycleEvent[] | null
[src]

The lifecycle events of the deployment to this target Amazon ECS application.

§
status?: TargetStatus | null
[src]

The status an Amazon ECS deployment's target ECS application.

§
targetArn?: string | null
[src]

The Amazon Resource Name (ARN) of the target.

§
targetId?: string | null
[src]

The unique ID of a deployment target that has a type of ecsTarget.

§
taskSetsInfo?: ECSTaskSet[] | null
[src]

The ECSTaskSet objects associated with the ECS target.