deleteRemoteAccessSession
inline suspend fun DeviceFarmClient.deleteRemoteAccessSession(crossinline block: DeleteRemoteAccessSessionRequest.Builder.() -> Unit): DeleteRemoteAccessSessionResponse
Deletes a completed remote access session and its results.
Samples
fun main() {
//sampleStart
// The following example deletes a specific remote access session.
val resp = deviceFarmClient.deleteRemoteAccessSession {
arn = "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456"
}
//sampleEnd
}