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

LambdaTarget

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

Information about the target AWS Lambda function during an AWS Lambda deployment.

interface LambdaTarget {
deploymentId?: string | null;
lambdaFunctionInfo?: LambdaFunctionInfo | 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.

§
lambdaFunctionInfo?: LambdaFunctionInfo | null
[src]

A LambdaFunctionInfo object that describes a target Lambda function.

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

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

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

The lifecycle events of the deployment to this target Lambda function.

§
status?: TargetStatus | null
[src]

The status an AWS Lambda deployment's target Lambda function.

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