Struct rusoto_devicefarm::GetDevicePoolCompatibilityRequest[][src]

pub struct GetDevicePoolCompatibilityRequest {
    pub app_arn: Option<String>,
    pub device_pool_arn: String,
    pub test: Option<ScheduleRunTest>,
    pub test_type: Option<String>,
}

Represents a request to the get device pool compatibility operation.

Fields

The ARN of the app that is associated with the specified device pool.

The device pool's ARN.

Information about the uploaded test to be run against the device pool.

The test type for the specified device pool.

Allowed values include the following:

  • BUILTINFUZZ: The built-in fuzz type.

  • BUILTINEXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.

  • APPIUMJAVAJUNIT: The Appium Java JUnit type.

  • APPIUMJAVATESTNG: The Appium Java TestNG type.

  • APPIUMPYTHON: The Appium Python type.

  • APPIUMWEBJAVAJUNIT: The Appium Java JUnit type for Web apps.

  • APPIUMWEBJAVATESTNG: The Appium Java TestNG type for Web apps.

  • APPIUMWEBPYTHON: The Appium Python type for Web apps.

  • CALABASH: The Calabash type.

  • INSTRUMENTATION: The Instrumentation type.

  • UIAUTOMATION: The uiautomation type.

  • UIAUTOMATOR: The uiautomator type.

  • XCTEST: The XCode test type.

  • XCTESTUI: The XCode UI test type.

Trait Implementations

impl Default for GetDevicePoolCompatibilityRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for GetDevicePoolCompatibilityRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDevicePoolCompatibilityRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetDevicePoolCompatibilityRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations