Access Application Cors Header
data class AccessApplicationCorsHeader(val allowAllHeaders: Boolean? = null, val allowAllMethods: Boolean? = null, val allowAllOrigins: Boolean? = null, val allowCredentials: Boolean? = null, val allowedHeaders: List<String>? = null, val allowedMethods: List<String>? = null, val allowedOrigins: List<String>? = null, val maxAge: Int? = null)
Properties
Link copied to clipboard
Value to determine whether all HTTP headers are exposed.
Link copied to clipboard
Value to determine whether all methods are exposed.
Link copied to clipboard
Value to determine whether all origins are permitted to make CORS requests.
Link copied to clipboard
Value to determine if credentials (cookies, authorization headers, or TLS client certificates) are included with requests.
Link copied to clipboard
List of HTTP headers to expose via CORS.
Link copied to clipboard
List of methods to expose via CORS.
Link copied to clipboard
List of origins permitted to make CORS requests.