updateJobQueue
Updates a job queue.
Samples
import aws.sdk.kotlin.services.batch.model.JqState
fun main() {
//sampleStart
// This example disables a job queue so that it can be deleted.
val resp = batchClient.updateJobQueue {
state = JqState.fromValue("DISABLED")
jobQueue = "GPGPU"
}
//sampleEnd
}