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

AliasConfiguration

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

Provides configuration information about a Lambda function alias.

interface AliasConfiguration {
AliasArn?: string | null;
Description?: string | null;
FunctionVersion?: string | null;
Name?: string | null;
RevisionId?: string | null;
RoutingConfig?: AliasRoutingConfiguration | null;
}

§Properties

§
AliasArn?: string | null
[src]

The Amazon Resource Name (ARN) of the alias.

§
Description?: string | null
[src]

A description of the alias.

§
FunctionVersion?: string | null
[src]

The function version that the alias invokes.

§
Name?: string | null
[src]

The name of the alias.

§
RevisionId?: string | null
[src]

A unique identifier that changes when you update the alias.

§
RoutingConfig?: AliasRoutingConfiguration | null
[src]

The routing configuration of the alias.