Http Route Rule Action Cors Policy Args
data class HttpRouteRuleActionCorsPolicyArgs(val allowCredentials: Output<Boolean>? = null, val allowHeaders: Output<List<String>>? = null, val allowMethods: Output<List<String>>? = null, val allowOriginRegexes: Output<List<String>>? = null, val allowOrigins: Output<List<String>>? = null, val disabled: Output<Boolean>? = null, val exposeHeaders: Output<List<String>>? = null, val maxAge: Output<String>? = null) : ConvertibleToJava<HttpRouteRuleActionCorsPolicyArgs>
Constructors
Link copied to clipboard
constructor(allowCredentials: Output<Boolean>? = null, allowHeaders: Output<List<String>>? = null, allowMethods: Output<List<String>>? = null, allowOriginRegexes: Output<List<String>>? = null, allowOrigins: Output<List<String>>? = null, disabled: Output<Boolean>? = null, exposeHeaders: Output<List<String>>? = null, maxAge: Output<String>? = null)
Properties
Link copied to clipboard
In response to a preflight request, setting this to true indicates that the actual request can include user credentials.
Link copied to clipboard
Specifies the content for Access-Control-Allow-Headers header.
Link copied to clipboard
Specifies the content for Access-Control-Allow-Methods header.
Link copied to clipboard
Specifies the regular expression patterns that match allowed origins.
Link copied to clipboard
Specifies the list of origins that will be allowed to do CORS requests.
Link copied to clipboard
Specifies the content for Access-Control-Expose-Headers header.