cancelExportJob
inline suspend fun SesV2Client.cancelExportJob(crossinline block: CancelExportJobRequest.Builder.() -> Unit): CancelExportJobResponse
Cancels an export job.
Samples
fun main() {
//sampleStart
// Cancels the export job with ID ef28cf62 9d8e 4b60 9283 b09816c99a99
sesV2Client.cancelExportJob {
jobId = "ef28cf62-9d8e-4b60-9283-b09816c99a99"
}
//sampleEnd
}