getDevicePoolCompatibility
inline suspend fun DeviceFarmClient.getDevicePoolCompatibility(crossinline block: GetDevicePoolCompatibilityRequest.Builder.() -> Unit): GetDevicePoolCompatibilityResponse
Gets information about compatibility with a device pool.
Samples
fun main() {
//sampleStart
// The following example returns information about the compatibility of a specific device pool, given
// its ARN.
val resp = deviceFarmClient.getDevicePoolCompatibility {
devicePoolArn = "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID"
appArn = "arn:aws:devicefarm:us-west-2::app:123-456-EXAMPLE-GUID"
testType = TestType.fromValue("APPIUM_PYTHON")
}
//sampleEnd
}