{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Cors",
"title": "Cors",
"type": "object",
"properties": {
"AllowCredentials": {
"allOf": [
{
"$ref": "#/components/schemas/AllowCredentials"
},
{
"description": "Whether to allow cookies or other credentials in requests to your function URL. The default is false."
}
]
},
"AllowHeaders": {
"allOf": [
{
"$ref": "#/components/schemas/HeadersList"
},
{
"description": "The HTTP headers that origins can include in requests to your function URL. For example: Date, Keep-Alive, X-Custom-Header."
}
]
},
"AllowMethods": {
"allOf": [
{
"$ref": "#/components/schemas/AllowMethodsList"
},
{
"description": "The HTTP methods that are allowed when calling your function URL. For example: GET, POST, DELETE, or the wildcard character (*)."
}
]
},
"AllowOrigins": {
"allOf": [
{
"$ref": "#/components/schemas/AllowOriginsList"
},
{
"description": "
The origins that can access your function URL. You can list any number of specific origins, separated by a comma. For example: https://www.example.com, http://localhost:60905.
Alternatively, you can grant access to all origins using the wildcard character (*).
Date, Keep-Alive, X-Custom-Header."
}
]
},
"MaxAge": {
"allOf": [
{
"$ref": "#/components/schemas/MaxAge"
},
{
"description": "The maximum amount of time, in seconds, that web browsers can cache results of a preflight request. By default, this is set to 0, which means that the browser doesn't cache results."
}
]
}
},
"description": "The cross-origin resource sharing (CORS) settings for your Lambda function URL. Use CORS to grant access to your function URL from any origin. You can also use CORS to control access for specific HTTP headers and methods in requests to your function URL."
}