Skip to content

Create function url config

async_boto.validation.lambda_.create_function_url_config

CreateFunctionUrlConfigRequest

Bases: BaseModel

Request model for creating a Lambda function URL configuration.

PARAMETER DESCRIPTION
FunctionName

The name or ARN of the Lambda function. Name formats: - Function name – my-function - Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function - Partial ARN – 123456789012:function:my-function

TYPE: str

Qualifier

The alias name.

TYPE: str

AuthType

The type of authentication that the function URL uses. Set to AWS_IAM to restrict access to authenticated IAM users only. Set to NONE to bypass IAM authentication and create a public endpoint.

TYPE: str

Cors

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

TYPE: Cors

InvokeMode

The invocation mode for the function URL. Set to BUFFERED to buffer responses (default). Set to RESPONSE_STREAM to stream response payloads.

TYPE: str

FunctionName instance-attribute

FunctionName

Qualifier class-attribute instance-attribute

Qualifier = None

AuthType instance-attribute

AuthType

Cors class-attribute instance-attribute

Cors = None

InvokeMode class-attribute instance-attribute

InvokeMode = None

CreateFunctionUrlConfigResponse

Bases: BaseModel

Response model for creating a Lambda function URL configuration.

PARAMETER DESCRIPTION
AuthType

The type of authentication that the function URL uses.

TYPE: str

Cors

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

TYPE: Cors

CreationTime

When the function URL was created, in ISO-8601 format.

TYPE: str

FunctionArn

The Amazon Resource Name (ARN) of the function.

TYPE: str

FunctionUrl

The HTTP URL endpoint for the function.

TYPE: str

InvokeMode

The invocation mode for the function URL.

TYPE: str

AuthType instance-attribute

AuthType

CreationTime instance-attribute

CreationTime

FunctionArn instance-attribute

FunctionArn

FunctionUrl instance-attribute

FunctionUrl

Cors class-attribute instance-attribute

Cors = None

InvokeMode class-attribute instance-attribute

InvokeMode = None