listRemoteAccessSessions
abstract suspend fun listRemoteAccessSessions(input: ListRemoteAccessSessionsRequest): ListRemoteAccessSessionsResponse
Returns a list of all currently running remote access sessions.
Samples
fun main() {
//sampleStart
// The following example returns information about a specific Device Farm remote access session.
val resp = deviceFarmClient.listRemoteAccessSessions {
arn = "arn:aws:devicefarm:us-west-2:123456789101:session:EXAMPLE-GUID-123-456"
nextToken = "RW5DdDJkMWYwZjM2MzM2VHVpOHJIUXlDUXlhc2QzRGViYnc9SEXAMPLE="
}
//sampleEnd
}