Skip to content

Update function url config

async_boto.validation.lambda_.update_function_url_config

UpdateFunctionUrlConfigRequest

Bases: BaseModel

Request model for updating the configuration for a Lambda function URL.

PARAMETER DESCRIPTION
FunctionName

The name or ARN of the Lambda function. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

TYPE: str

Qualifier

The alias name. Minimum length of 1. Maximum length of 128.

TYPE: Optional[str]

AuthType

The type of authentication that your function URL uses. Valid values: NONE, AWS_IAM.

TYPE: Optional[str]

Cors

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

TYPE: Optional[Cors]

InvokeMode

The invocation mode for your function URL. Valid values: BUFFERED, RESPONSE_STREAM.

TYPE: Optional[str]

FunctionName instance-attribute

FunctionName

Qualifier instance-attribute

Qualifier

AuthType instance-attribute

AuthType

Cors instance-attribute

Cors

InvokeMode instance-attribute

InvokeMode

UpdateFunctionUrlConfigResponse

Bases: BaseModel

Response model for updating the configuration for a Lambda function URL.

PARAMETER DESCRIPTION
AuthType

The type of authentication that your function URL uses.

TYPE: Optional[str]

Cors

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

TYPE: Optional[CorsResponse]

CreationTime

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

TYPE: Optional[str]

FunctionArn

The Amazon Resource Name (ARN) of your function.

TYPE: Optional[str]

FunctionUrl

The HTTP URL endpoint for your function.

TYPE: Optional[str]

InvokeMode

The invocation mode for your function URL.

TYPE: Optional[str]

LastModifiedTime

When the function URL configuration was last updated, in ISO-8601 format.

TYPE: Optional[str]

AuthType instance-attribute

AuthType

Cors instance-attribute

Cors

CreationTime instance-attribute

CreationTime

FunctionArn instance-attribute

FunctionArn

FunctionUrl instance-attribute

FunctionUrl

InvokeMode instance-attribute

InvokeMode

LastModifiedTime instance-attribute

LastModifiedTime