Dicom Service Cors Args
data class DicomServiceCorsArgs(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<DicomServiceCorsArgs>
Constructors
Properties
Link copied to clipboard
Whether to allow credentials in CORS. Defaults to false
.
Link copied to clipboard
A list of allowed headers for CORS.
Link copied to clipboard
A list of allowed methods for CORS.
Link copied to clipboard
A list of allowed origins for CORS.
Link copied to clipboard
The maximum age in seconds for the CORS configuration (must be between 0 and 99998 inclusive).