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

LambdaFunctionInfo

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

Information about a Lambda function specified in a deployment.

interface LambdaFunctionInfo {
currentVersion?: string | null;
functionAlias?: string | null;
functionName?: string | null;
targetVersion?: string | null;
targetVersionWeight?: number | null;
}

§Properties

§
currentVersion?: string | null
[src]

The version of a Lambda function that production traffic points to.

§
functionAlias?: string | null
[src]

The alias of a Lambda function. For more information, see AWS Lambda Function Aliases in the AWS Lambda Developer Guide.

§
functionName?: string | null
[src]

The name of a Lambda function.

§
targetVersion?: string | null
[src]

The version of a Lambda function that production traffic points to after the Lambda function is deployed.

§
targetVersionWeight?: number | null
[src]

The percentage of production traffic that the target version of a Lambda function receives.