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:
|
Qualifier
|
The alias name.
TYPE:
|
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:
|
Cors
|
The cross-origin resource sharing (CORS) settings for the function URL.
TYPE:
|
InvokeMode
|
The invocation mode for the function URL. Set to BUFFERED to buffer responses (default). Set to RESPONSE_STREAM to stream response payloads.
TYPE:
|
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:
|
Cors
|
The cross-origin resource sharing (CORS) settings for the function URL.
TYPE:
|
CreationTime
|
When the function URL was created, in ISO-8601 format.
TYPE:
|
FunctionArn
|
The Amazon Resource Name (ARN) of the function.
TYPE:
|
FunctionUrl
|
The HTTP URL endpoint for the function.
TYPE:
|
InvokeMode
|
The invocation mode for the function URL.
TYPE:
|
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