AWS Lambda · Schema

CreateFunctionUrlConfigRequest

Request body for creating a function URL

Properties

Name Type Description
AuthType string The type of authentication. NONE allows public unauthenticated access. AWS_IAM requires IAM authentication.
InvokeMode string
View JSON Schema on GitHub

JSON Schema

aws-lambda-create-function-url-config-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateFunctionUrlConfigRequest",
  "type": "object",
  "description": "Request body for creating a function URL",
  "properties": {
    "AuthType": {
      "type": "string",
      "description": "The type of authentication. NONE allows public unauthenticated access. AWS_IAM requires IAM authentication."
    },
    "InvokeMode": {
      "type": "string"
    }
  }
}