Api Cors
data class ApiCors(val allowCredentials: Boolean? = null, val allowHeaders: List<String>? = null, val allowMethods: List<String>? = null, val allowOrigins: List<String>? = null, val exposeHeaders: List<String>? = null, val maxAge: Int? = null)
The `Cors`
property specifies a CORS configuration for an API. Supported only for HTTP APIs. See Configuring CORS for more information.