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

AwsLambdaFunctionCode

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

The code for the Lambda function. You can specify either an object in Amazon S3, or upload a deployment package directly.

interface AwsLambdaFunctionCode {
S3Bucket?: string | null;
S3Key?: string | null;
S3ObjectVersion?: string | null;
ZipFile?: string | null;
}

§Properties

§
S3Bucket?: string | null
[src]

An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.

§
S3Key?: string | null
[src]

The Amazon S3 key of the deployment package.

§
S3ObjectVersion?: string | null
[src]

For versioned objects, the version of the deployment package object to use.

§
ZipFile?: string | null
[src]

The base64-encoded contents of the deployment package. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for you.