Function Url Cors Args
data class FunctionUrlCorsArgs(val allowCredentials: Output<Boolean>? = null, val allowHeaders: Output<List<String>>? = null, val allowMethods: Output<List<String>>? = null, val allowOrigins: Output<List<String>>? = null, val exposeHeaders: Output<List<String>>? = null, val maxAge: Output<Int>? = null) : ConvertibleToJava<FunctionUrlCorsArgs>
Properties
Link copied to clipboard
Whether to allow cookies or other credentials in requests to the function URL. The default is false.
Link copied to clipboard
The HTTP headers that origins can include in requests to the function URL. For example: ["date", "keep-alive", "x-custom-header"].
Link copied to clipboard
The HTTP methods that are allowed when calling the function URL. For example: ["GET", "POST", "DELETE"], or the wildcard character (["*"]).
Link copied to clipboard
The origins that can access the function URL. You can list any number of specific origins (or the wildcard character ("*")), separated by a comma. For example: ["https://www.example.com", "http://localhost:60905"].
Link copied to clipboard
The HTTP headers in your function response that you want to expose to origins that call the function URL.