App Spec Ingress Rule Cors Args
data class AppSpecIngressRuleCorsArgs(val allowCredentials: Output<Boolean>? = null, val allowHeaders: Output<List<String>>? = null, val allowMethods: Output<List<String>>? = null, val allowOrigins: Output<AppSpecIngressRuleCorsAllowOriginsArgs>? = null, val exposeHeaders: Output<List<String>>? = null, val maxAge: Output<String>? = null) : ConvertibleToJava<AppSpecIngressRuleCorsArgs>
Properties
Link copied to clipboard
Whether browsers should expose the response to the client-side JavaScript code when the request's credentials mode is include. This configures the Access-Control-Allow-Credentials header.
Link copied to clipboard
The set of allowed HTTP request headers. This configures the Access-Control-Allow-Headers header.
Link copied to clipboard
The set of allowed HTTP methods. This configures the Access-Control-Allow-Methods header.
Link copied to clipboard
The Access-Control-Allow-Origin can be
Link copied to clipboard
The set of HTTP response headers that browsers are allowed to access. This configures the Access-Control-Expose-Headers header.