enableVolumeIo
inline suspend fun Ec2Client.enableVolumeIo(crossinline block: EnableVolumeIoRequest.Builder.() -> Unit): EnableVolumeIoResponse
Enables I/O operations for a volume that had I/O operations disabled because the data on the volume was potentially inconsistent.
Samples
fun main() {
//sampleStart
// This example enables I O on volume vol 1234567890abcdef0
ec2Client.enableVolumeIo {
volumeId = "vol-1234567890abcdef0"
}
//sampleEnd
}