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

InstanceTarget

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

A target Amazon EC2 or on-premises instance during a deployment that uses the EC2/On-premises compute platform.

interface InstanceTarget {
deploymentId?: string | null;
instanceLabel?: TargetLabel | null;
lastUpdatedAt?: Date | number | null;
lifecycleEvents?: LifecycleEvent[] | null;
status?: TargetStatus | null;
targetArn?: string | null;
targetId?: string | null;
}

§Properties

§
deploymentId?: string | null
[src]

The unique ID of a deployment.

§
instanceLabel?: TargetLabel | null
[src]

A label that identifies whether the instance is an original target (BLUE) or a replacement target (GREEN).

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

The date and time when the target instance was updated by a deployment.

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

The lifecycle events of the deployment to this target instance.

§
status?: TargetStatus | null
[src]

The status an EC2/On-premises deployment's target instance.

§
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 instanceTarget.