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

PublishLayerVersionRequest

import type { PublishLayerVersionRequest } from "https://aws-api.deno.dev/v0.4/services/lambda.ts?docs=full";
interface PublishLayerVersionRequest {
CompatibleArchitectures?: Architecture[] | null;
CompatibleRuntimes?: Runtime[] | null;
Description?: string | null;
LayerName: string;
LicenseInfo?: string | null;
}

§Properties

§
CompatibleArchitectures?: Architecture[] | null
[src]

A list of compatible instruction set architectures.

§
CompatibleRuntimes?: Runtime[] | null
[src]

A list of compatible function runtimes. Used for filtering with "ListLayers" and "ListLayerVersions".

§

The function layer archive.

§
Description?: string | null
[src]

The description of the version.

§
LayerName: string
[src]

The name or Amazon Resource Name (ARN) of the layer.

§
LicenseInfo?: string | null
[src]

The layer's software license. It can be any of the following:

  • An SPDX license identifier. For example, MIT.
  • The URL of a license hosted on the internet. For example, https://opensource.org/licenses/MIT.
  • The full text of the license.