Cors Rule Args
data class CorsRuleArgs(val allowedHeaders: Output<List<String>>? = null, val allowedMethods: Output<List<String>>? = null, val allowedOrigins: Output<List<String>>, val exposedHeaders: Output<List<String>>? = null, val maxAgeInSeconds: Output<Int>? = null) : ConvertibleToJava<CorsRuleArgs>
CORS details.
Constructors
Properties
Link copied to clipboard
The request headers that the origin domain may specify on the CORS request.
Link copied to clipboard
The methods (HTTP request verbs) that the origin domain may use for a CORS request.
Link copied to clipboard
The origin domains that are permitted to make a request against the service via CORS.
Link copied to clipboard
The response headers to expose to CORS clients.
Link copied to clipboard
The number of seconds that the client/browser should cache a preflight response.