Service Cors Configuration Args
data class ServiceCorsConfigurationArgs(val allowCredentials: Output<Boolean>? = null, val allowedHeaders: Output<List<String>>? = null, val allowedMethods: Output<List<String>>? = null, val allowedOrigins: Output<List<String>>? = null, val maxAgeInSeconds: Output<Int>? = null) : ConvertibleToJava<ServiceCorsConfigurationArgs>
Constructors
Properties
Link copied to clipboard
(Boolean) If credentials are allowed via CORS.
Link copied to clipboard
A set of headers to be allowed via CORS.
Link copied to clipboard
The methods to be allowed via CORS. Possible values are DELETE, GET, HEAD, MERGE, POST, OPTIONS, PATCH and PUT.
Link copied to clipboard
A set of origins to be allowed via CORS.
Link copied to clipboard
The max age to be allowed via CORS.