Rule Rule Action Cors Config Args
data class RuleRuleActionCorsConfigArgs(val allowCredentials: Output<String>? = 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<RuleRuleActionCorsConfigArgs>
Properties
Link copied to clipboard
Specifies whether credentials can be passed during CORS operations. Valid values: on
, off
.
Link copied to clipboard
The allowed headers for CORS requests.
Link copied to clipboard
The allowed HTTP methods for CORS requests. Valid values: GET
, POST
, PUT
, DELETE
, HEAD
, OPTIONS
, PATCH
.
Link copied to clipboard
The allowed origins of CORS requests.
Link copied to clipboard
The headers that can be exposed.