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

UpdateFunctionUrlConfigResponse

import type { UpdateFunctionUrlConfigResponse } from "https://aws-api.deno.dev/v0.4/services/lambda.ts?docs=full";
interface UpdateFunctionUrlConfigResponse {
Cors?: Cors | null;
CreationTime: string;
FunctionArn: string;
FunctionUrl: string;
LastModifiedTime: string;
}

§Properties

§

The type of authentication that your function URL uses. Set to AWS_IAM if you want to restrict access to authenticated IAM users only. Set to NONE if you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.

§
Cors?: Cors | null
[src]

The cross-origin resource sharing (CORS) settings for your function URL.

§
CreationTime: string
[src]

When the function URL was created, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

§
FunctionArn: string
[src]

The Amazon Resource Name (ARN) of your function.

§
FunctionUrl: string
[src]

The HTTP URL endpoint for your function.

§
LastModifiedTime: string
[src]

When the function URL configuration was last updated, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).