Access Application Cors Header Args
data class AccessApplicationCorsHeaderArgs(val allowAllHeaders: Output<Boolean>? = null, val allowAllMethods: Output<Boolean>? = null, val allowAllOrigins: Output<Boolean>? = null, val allowCredentials: Output<Boolean>? = null, val allowedHeaders: Output<List<String>>? = null, val allowedMethods: Output<List<String>>? = null, val allowedOrigins: Output<List<String>>? = null, val maxAge: Output<Int>? = null) : ConvertibleToJava<AccessApplicationCorsHeaderArgs>
Constructors
Link copied to clipboard
constructor(allowAllHeaders: Output<Boolean>? = null, allowAllMethods: Output<Boolean>? = null, allowAllOrigins: Output<Boolean>? = null, allowCredentials: Output<Boolean>? = null, allowedHeaders: Output<List<String>>? = null, allowedMethods: Output<List<String>>? = null, allowedOrigins: Output<List<String>>? = null, maxAge: Output<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.