BucketCorsRule

data class BucketCorsRule(val allowedHeaders: List<String>? = null, val allowedMethods: List<String>, val allowedOrigins: List<String>, val exposeHeaders: List<String>? = null, val maxAgeSeconds: Int? = null)

Constructors

Link copied to clipboard
constructor(allowedHeaders: List<String>? = null, allowedMethods: List<String>, allowedOrigins: List<String>, exposeHeaders: List<String>? = null, maxAgeSeconds: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val allowedHeaders: List<String>? = null

Specifies which headers are allowed.

Link copied to clipboard

Specifies which methods are allowed. Can be GET, PUT, POST, DELETE or HEAD.

Link copied to clipboard

Specifies which origins are allowed.

Link copied to clipboard
val exposeHeaders: List<String>? = null

Specifies expose header in the response.

Link copied to clipboard
val maxAgeSeconds: Int? = null

Specifies time in seconds that browser can cache the response for a preflight request.