amazonka-devicefarm-1.2.0.1: Amazon Device Farm SDK.

Copyright(c) 2013-2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.DeviceFarm.Types

Contents

Description

 

Synopsis

Service Configuration

deviceFarm :: Service Source

API version '2015-06-23' of the Amazon Device Farm SDK configuration.

Errors

_IdempotencyException :: AsError a => Getting (First ServiceError) a ServiceError Source

An entity with the same name already exists.

_NotFoundException :: AsError a => Getting (First ServiceError) a ServiceError Source

The specified entity was not found.

_ArgumentException :: AsError a => Getting (First ServiceError) a ServiceError Source

An invalid argument was specified.

_ServiceAccountException :: AsError a => Getting (First ServiceError) a ServiceError Source

There was a problem with the service account.

ArtifactCategory

ArtifactType

BillingMethod

DeviceAttribute

DeviceFormFactor

DevicePlatform

DevicePoolType

ExecutionResult

ExecutionStatus

RuleOperator

SampleType

TestType

UploadStatus

UploadType

AccountSettings

data AccountSettings Source

A container for account-level settings within AWS Device Farm.

See: accountSettings smart constructor.

accountSettings :: AccountSettings Source

Creates a value of AccountSettings with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

asAwsAccountNumber :: Lens' AccountSettings (Maybe Text) Source

The AWS account number specified in the AccountSettings container.

asUnmeteredDevices :: Lens' AccountSettings (HashMap DevicePlatform Int) Source

Returns the unmetered devices you have purchased.

Artifact

data Artifact Source

Represents the output of a test. Examples of artifacts include logs and screenshots.

See: artifact smart constructor.

artifact :: Artifact Source

Creates a value of Artifact with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

aArn :: Lens' Artifact (Maybe Text) Source

The artifact's ARN.

aUrl :: Lens' Artifact (Maybe Text) Source

The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the artifact's file.

aExtension :: Lens' Artifact (Maybe Text) Source

The artifact's file extension.

aName :: Lens' Artifact (Maybe Text) Source

The artifact's name.

aType :: Lens' Artifact (Maybe ArtifactType) Source

The artifact's type.

Allowed values include the following:

  • APPIUM_JAVA_OUTPUT: The Appium Java output type.
  • APPIUM_JAVA_XML_OUTPUT: The Appium Java XML output type.
  • APPIUM_SERVER_OUTPUT: The Appium server output type.
  • AUTOMATION_OUTPUT: The automation output type.
  • CALABASH_JSON_OUTPUT: The Calabash JSON output type.
  • CALABASH_JAVA_XML_OUTPUT: The Calabash Java XML output type.
  • CALABASH_PRETTY_OUTPUT: The Calabash pretty output type.
  • CALABASH_STANDARD_OUTPUT: The Calabash standard output type.
  • DEVICE_LOG: The device log type.
  • EXERCISER_MONKEY_OUTPUT: For Android, the artifact (log) generated by an Android fuzz test.
  • INSTRUMENTATION_OUTPUT: The instrumentation type.
  • MESSAGE_LOG: The message log type.
  • RESULT_LOG: The result log type.
  • SCREENSHOT: The screenshot type.
  • SERVICE_LOG: The service log type.
  • UNKNOWN: An unknown type.

CPU

data CPU Source

Represents the amount of CPU that an app is using on a physical device.

Note that this does not represent system-wide CPU usage.

See: cpu smart constructor.

cpu :: CPU Source

Creates a value of CPU with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

cpuFrequency :: Lens' CPU (Maybe Text) Source

The CPU's frequency.

cpuClock :: Lens' CPU (Maybe Double) Source

The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2 GHz CPU is expressed as 1200000000.

cpuArchitecture :: Lens' CPU (Maybe Text) Source

The CPU's architecture, for example x86 or ARM.

Counters

data Counters Source

Represents entity counters.

See: counters smart constructor.

counters :: Counters Source

Creates a value of Counters with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

cPassed :: Lens' Counters (Maybe Int) Source

The number of passed entities.

cSkipped :: Lens' Counters (Maybe Int) Source

The number of skipped entities.

cWarned :: Lens' Counters (Maybe Int) Source

The number of warned entities.

cStopped :: Lens' Counters (Maybe Int) Source

The number of stopped entities.

cTotal :: Lens' Counters (Maybe Int) Source

The total number of entities.

cFailed :: Lens' Counters (Maybe Int) Source

The number of failed entities.

cErrored :: Lens' Counters (Maybe Int) Source

The number of errored entities.

Device

data Device Source

Represents a device type that an app is tested against.

See: device smart constructor.

device :: Device Source

Creates a value of Device with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dCarrier :: Lens' Device (Maybe Text) Source

The device's carrier.

dImage :: Lens' Device (Maybe Text) Source

The device's image name.

dManufacturer :: Lens' Device (Maybe Text) Source

The device's manufacturer name.

dPlatform :: Lens' Device (Maybe DevicePlatform) Source

The device's platform.

Allowed values include:

  • ANDROID: The Android platform.
  • IOS: The iOS platform.

dArn :: Lens' Device (Maybe Text) Source

The device's ARN.

dFormFactor :: Lens' Device (Maybe DeviceFormFactor) Source

The device's form factor.

Allowed values include:

  • PHONE: The phone form factor.
  • TABLET: The tablet form factor.

dResolution :: Lens' Device (Maybe Resolution) Source

Undocumented member.

dMemory :: Lens' Device (Maybe Integer) Source

The device's total memory size, expressed in bytes.

dRadio :: Lens' Device (Maybe Text) Source

The device's radio.

dOs :: Lens' Device (Maybe Text) Source

The device's operating system type.

dName :: Lens' Device (Maybe Text) Source

The device's display name.

dModel :: Lens' Device (Maybe Text) Source

The device's model name.

dCpu :: Lens' Device (Maybe CPU) Source

Information about the device's CPU.

dHeapSize :: Lens' Device (Maybe Integer) Source

The device's heap size, expressed in bytes.

DevicePool

data DevicePool Source

Represents a collection of device types.

See: devicePool smart constructor.

devicePool :: DevicePool Source

Creates a value of DevicePool with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dpArn :: Lens' DevicePool (Maybe Text) Source

The device pool's ARN.

dpRules :: Lens' DevicePool [Rule] Source

Information about the device pool's rules.

dpName :: Lens' DevicePool (Maybe Text) Source

The device pool's name.

dpType :: Lens' DevicePool (Maybe DevicePoolType) Source

The device pool's type.

Allowed values include:

  • CURATED: A device pool that is created and managed by AWS Device Farm.
  • PRIVATE: A device pool that is created and managed by the device pool developer.

dpDescription :: Lens' DevicePool (Maybe Text) Source

The device pool's description.

DevicePoolCompatibilityResult

devicePoolCompatibilityResult :: DevicePoolCompatibilityResult Source

Creates a value of DevicePoolCompatibilityResult with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

dpcrCompatible :: Lens' DevicePoolCompatibilityResult (Maybe Bool) Source

Whether the result was compatible with the device pool.

IncompatibilityMessage

incompatibilityMessage :: IncompatibilityMessage Source

Creates a value of IncompatibilityMessage with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

imType :: Lens' IncompatibilityMessage (Maybe DeviceAttribute) Source

The type of incompatibility.

Allowed values include:

  • ARN: The ARN.
  • FORM_FACTOR: The form factor (for example, phone or tablet).
  • MANUFACTURER: The manufacturer.
  • PLATFORM: The platform (for example, Android or iOS).

imMessage :: Lens' IncompatibilityMessage (Maybe Text) Source

A message about the incompatibility.

Job

data Job Source

Represents a device.

See: job smart constructor.

job :: Job Source

Creates a value of Job with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

jobStatus :: Lens' Job (Maybe ExecutionStatus) Source

The job's status.

Allowed values include:

  • COMPLETED: A completed status.
  • PENDING: A pending status.
  • PROCESSING: A processing status.
  • RUNNING: A running status.
  • SCHEDULING: A scheduling status.

jobCounters :: Lens' Job (Maybe Counters) Source

The job's result counters.

jobArn :: Lens' Job (Maybe Text) Source

The job's ARN.

jobCreated :: Lens' Job (Maybe UTCTime) Source

When the job was created.

jobDevice :: Lens' Job (Maybe Device) Source

Undocumented member.

jobStopped :: Lens' Job (Maybe UTCTime) Source

The job's stop time.

jobResult :: Lens' Job (Maybe ExecutionResult) Source

The job's result.

Allowed values include:

  • ERRORED: An error condition.
  • FAILED: A failed condition.
  • SKIPPED: A skipped condition.
  • STOPPED: A stopped condition.
  • PASSED: A passing condition.
  • PENDING: A pending condition.
  • WARNED: A warning condition.

jobName :: Lens' Job (Maybe Text) Source

The job's name.

jobType :: Lens' Job (Maybe TestType) Source

The job's type.

Allowed values include the following:

  • BUILTIN_FUZZ: The built-in fuzz type.
  • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
  • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
  • CALABASH: The Calabash type.
  • INSTRUMENTATION: The Instrumentation type.
  • UIAUTOMATION: The uiautomation type.
  • UIAUTOMATOR: The uiautomator type.
  • XCTEST: The XCode test type.

jobMessage :: Lens' Job (Maybe Text) Source

A message about the job's result.

jobStarted :: Lens' Job (Maybe UTCTime) Source

The job's start time.

Location

data Location Source

Represents a latitude and longitude pair, expressed in geographic coordinate system degrees (for example 47.6204, -122.3491).

Elevation is currently not supported.

See: location smart constructor.

location Source

Creates a value of Location with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

Problem

data Problem Source

Represents a specific warning or failure.

See: problem smart constructor.

problem :: Problem Source

Creates a value of Problem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pDevice :: Lens' Problem (Maybe Device) Source

Information about the associated device.

pTest :: Lens' Problem (Maybe ProblemDetail) Source

Information about the associated test.

pResult :: Lens' Problem (Maybe ExecutionResult) Source

The problem's result.

Allowed values include:

  • ERRORED: An error condition.
  • FAILED: A failed condition.
  • SKIPPED: A skipped condition.
  • STOPPED: A stopped condition.
  • PASSED: A passing condition.
  • PENDING: A pending condition.
  • WARNED: A warning condition.

pRun :: Lens' Problem (Maybe ProblemDetail) Source

Information about the associated run.

pJob :: Lens' Problem (Maybe ProblemDetail) Source

Information about the associated job.

pMessage :: Lens' Problem (Maybe Text) Source

A message about the problem's result.

pSuite :: Lens' Problem (Maybe ProblemDetail) Source

Information about the associated suite.

ProblemDetail

problemDetail :: ProblemDetail Source

Creates a value of ProblemDetail with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pdArn :: Lens' ProblemDetail (Maybe Text) Source

The problem detail's ARN.

pdName :: Lens' ProblemDetail (Maybe Text) Source

The problem detail's name.

Project

data Project Source

Represents an operating-system neutral workspace for running and managing tests.

See: project smart constructor.

project :: Project Source

Creates a value of Project with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

pArn :: Lens' Project (Maybe Text) Source

The project's ARN.

pCreated :: Lens' Project (Maybe UTCTime) Source

When the project was created.

pName :: Lens' Project (Maybe Text) Source

The project's name.

Radios

data Radios Source

Represents the set of radios and their states on a device. Examples of radios include Wi-Fi, GPS, Bluetooth, and NFC.

See: radios smart constructor.

radios :: Radios Source

Creates a value of Radios with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rNfc :: Lens' Radios (Maybe Bool) Source

True if NFC is enabled at the beginning of the test; otherwise, false.

rGps :: Lens' Radios (Maybe Bool) Source

True if GPS is enabled at the beginning of the test; otherwise, false.

rBluetooth :: Lens' Radios (Maybe Bool) Source

True if Bluetooth is enabled at the beginning of the test; otherwise, false.

rWifi :: Lens' Radios (Maybe Bool) Source

True if Wi-Fi is enabled at the beginning of the test; otherwise, false.

Resolution

data Resolution Source

Represents the screen resolution of a device in height and width, expressed in pixels.

See: resolution smart constructor.

resolution :: Resolution Source

Creates a value of Resolution with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rHeight :: Lens' Resolution (Maybe Int) Source

The screen resolution's height, expressed in pixels.

rWidth :: Lens' Resolution (Maybe Int) Source

The screen resolution's width, expressed in pixels.

Rule

data Rule Source

Represents a condition for a device pool.

See: rule smart constructor.

rule :: Rule Source

Creates a value of Rule with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rAttribute :: Lens' Rule (Maybe DeviceAttribute) Source

The rule's attribute.

Allowed values include:

  • ARN: The ARN.
  • FORM_FACTOR: The form factor (for example, phone or tablet).
  • MANUFACTURER: The manufacturer.
  • PLATFORM: The platform (for example, Android or iOS).

rOperator :: Lens' Rule (Maybe RuleOperator) Source

The rule's operator.

  • EQUALS: The equals operator.
  • GREATER_THAN: The greater-than operator.
  • IN: The in operator.
  • LESS_THAN: The less-than operator.
  • NOT_IN: The not-in operator.

rValue :: Lens' Rule (Maybe Text) Source

The rule's value.

Run

data Run Source

Represents an app on a set of devices with a specific test and configuration.

See: run smart constructor.

run :: Run Source

Creates a value of Run with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

runStatus :: Lens' Run (Maybe ExecutionStatus) Source

The run's status.

Allowed values include:

  • COMPLETED: A completed status.
  • PENDING: A pending status.
  • PROCESSING: A processing status.
  • RUNNING: A running status.
  • SCHEDULING: A scheduling status.

runBillingMethod :: Lens' Run (Maybe BillingMethod) Source

Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is unmetered.

runCounters :: Lens' Run (Maybe Counters) Source

The run's result counters.

runPlatform :: Lens' Run (Maybe DevicePlatform) Source

The run's platform.

Allowed values include:

  • ANDROID: The Android platform.
  • IOS: The iOS platform.

runArn :: Lens' Run (Maybe Text) Source

The run's ARN.

runCreated :: Lens' Run (Maybe UTCTime) Source

When the run was created.

runCompletedJobs :: Lens' Run (Maybe Int) Source

The total number of completed jobs.

runStopped :: Lens' Run (Maybe UTCTime) Source

The run's stop time.

runResult :: Lens' Run (Maybe ExecutionResult) Source

The run's result.

Allowed values include:

  • ERRORED: An error condition.
  • FAILED: A failed condition.
  • SKIPPED: A skipped condition.
  • STOPPED: A stopped condition.
  • PASSED: A passing condition.
  • PENDING: A pending condition.
  • WARNED: A warning condition.

runName :: Lens' Run (Maybe Text) Source

The run's name.

runType :: Lens' Run (Maybe TestType) Source

The run's type.

Must be one of the following values:

  • BUILTIN_FUZZ: The built-in fuzz type.
  • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
  • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
  • CALABASH: The Calabash type.
  • INSTRUMENTATION: The Instrumentation type.
  • UIAUTOMATION: The uiautomation type.
  • UIAUTOMATOR: The uiautomator type.
  • XCTEST: The XCode test type.

runMessage :: Lens' Run (Maybe Text) Source

A message about the run's result.

runTotalJobs :: Lens' Run (Maybe Int) Source

The total number of jobs for the run.

runStarted :: Lens' Run (Maybe UTCTime) Source

The run's start time.

Sample

data Sample Source

Represents a sample of performance data.

See: sample smart constructor.

sample :: Sample Source

Creates a value of Sample with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

sArn :: Lens' Sample (Maybe Text) Source

The sample's ARN.

sUrl :: Lens' Sample (Maybe Text) Source

The pre-signed Amazon S3 URL that can be used with a corresponding GET request to download the sample's file.

sType :: Lens' Sample (Maybe SampleType) Source

The sample's type.

Must be one of the following values:

  • CPU: A CPU sample type. This is expressed as the app processing CPU time (including child processes) as reported by process, as a percentage.
  • MEMORY: A memory usage sample type. This is expressed as the total proportional set size of an app process, in kilobytes.
  • NATIVE_AVG_DRAWTIME
  • NATIVE_FPS
  • NATIVE_FRAMES
  • NATIVE_MAX_DRAWTIME
  • NATIVE_MIN_DRAWTIME
  • OPENGL_AVG_DRAWTIME
  • OPENGL_FPS
  • OPENGL_FRAMES
  • OPENGL_MAX_DRAWTIME
  • OPENGL_MIN_DRAWTIME
  • RX
  • RX_RATE: The total number of bytes per second (TCP and UDP) that are sent, by app process.
  • THREADS: A threads sample type. This is expressed as the total number of threads per app process.
  • TX
  • TX_RATE: The total number of bytes per second (TCP and UDP) that are received, by app process.

ScheduleRunConfiguration

scheduleRunConfiguration :: ScheduleRunConfiguration Source

Creates a value of ScheduleRunConfiguration with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

srcBillingMethod :: Lens' ScheduleRunConfiguration (Maybe BillingMethod) Source

Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is unmetered.

srcRadios :: Lens' ScheduleRunConfiguration (Maybe Radios) Source

Information about the radio states for the run.

srcLocation :: Lens' ScheduleRunConfiguration (Maybe Location) Source

Information about the location that is used for the run.

srcLocale :: Lens' ScheduleRunConfiguration (Maybe Text) Source

Information about the locale that is used for the run.

srcExtraDataPackageARN :: Lens' ScheduleRunConfiguration (Maybe Text) Source

The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm will extract to external data for Android or the app's sandbox for iOS.

srcAuxiliaryApps :: Lens' ScheduleRunConfiguration [Text] Source

A list of auxiliary apps for the run.

ScheduleRunTest

scheduleRunTest Source

Creates a value of ScheduleRunTest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

srtTestPackageARN :: Lens' ScheduleRunTest (Maybe Text) Source

The ARN of the uploaded test that will be run.

srtParameters :: Lens' ScheduleRunTest (HashMap Text Text) Source

The test's parameters, such as test framework parameters and fixture settings.

srtType :: Lens' ScheduleRunTest TestType Source

The test's type.

Must be one of the following values:

  • BUILTIN_FUZZ: The built-in fuzz type.
  • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
  • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
  • CALABASH: The Calabash type.
  • INSTRUMENTATION: The Instrumentation type.
  • UIAUTOMATION: The uiautomation type.
  • UIAUTOMATOR: The uiautomator type.
  • XCTEST: The XCode test type.

Suite

data Suite Source

Represents a collection of one or more tests.

See: suite smart constructor.

suite :: Suite Source

Creates a value of Suite with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

suiStatus :: Lens' Suite (Maybe ExecutionStatus) Source

The suite's status.

Allowed values include:

  • COMPLETED: A completed status.
  • PENDING: A pending status.
  • PROCESSING: A processing status.
  • RUNNING: A running status.
  • SCHEDULING: A scheduling status.

suiCounters :: Lens' Suite (Maybe Counters) Source

The suite's result counters.

suiArn :: Lens' Suite (Maybe Text) Source

The suite's ARN.

suiCreated :: Lens' Suite (Maybe UTCTime) Source

When the suite was created.

suiStopped :: Lens' Suite (Maybe UTCTime) Source

The suite's stop time.

suiResult :: Lens' Suite (Maybe ExecutionResult) Source

The suite's result.

Allowed values include:

  • ERRORED: An error condition.
  • FAILED: A failed condition.
  • SKIPPED: A skipped condition.
  • STOPPED: A stopped condition.
  • PASSED: A passing condition.
  • PENDING: A pending condition.
  • WARNED: A warning condition.

suiName :: Lens' Suite (Maybe Text) Source

The suite's name.

suiType :: Lens' Suite (Maybe TestType) Source

The suite's type.

Must be one of the following values:

  • BUILTIN_FUZZ: The built-in fuzz type.
  • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
  • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
  • CALABASH: The Calabash type.
  • INSTRUMENTATION: The Instrumentation type.
  • UIAUTOMATION: The uiautomation type.
  • UIAUTOMATOR: The uiautomator type.
  • XCTEST: The XCode test type.

suiMessage :: Lens' Suite (Maybe Text) Source

A message about the suite's result.

suiStarted :: Lens' Suite (Maybe UTCTime) Source

The suite's start time.

Test

data Test Source

Represents a condition that is evaluated.

See: test smart constructor.

test :: Test Source

Creates a value of Test with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

tStatus :: Lens' Test (Maybe ExecutionStatus) Source

The test's status.

Allowed values include:

  • COMPLETED: A completed status.
  • PENDING: A pending status.
  • PROCESSING: A processing status.
  • RUNNING: A running status.
  • SCHEDULING: A scheduling status.

tCounters :: Lens' Test (Maybe Counters) Source

The test's result counters.

tArn :: Lens' Test (Maybe Text) Source

The test's ARN.

tCreated :: Lens' Test (Maybe UTCTime) Source

When the test was created.

tStopped :: Lens' Test (Maybe UTCTime) Source

The test's stop time.

tResult :: Lens' Test (Maybe ExecutionResult) Source

The test's result.

Allowed values include:

  • ERRORED: An error condition.
  • FAILED: A failed condition.
  • SKIPPED: A skipped condition.
  • STOPPED: A stopped condition.
  • PASSED: A passing condition.
  • PENDING: A pending condition.
  • WARNED: A warning condition.

tName :: Lens' Test (Maybe Text) Source

The test's name.

tType :: Lens' Test (Maybe TestType) Source

The test's type.

Must be one of the following values:

  • BUILTIN_FUZZ: The built-in fuzz type.
  • BUILTIN_EXPLORER: For Android, an app explorer that will traverse an Android app, interacting with it and capturing screenshots at the same time.
  • APPIUM_JAVA_JUNIT: The Appium Java JUnit type.
  • APPIUM_JAVA_TESTNG: The Appium Java TestNG type.
  • CALABASH: The Calabash type.
  • INSTRUMENTATION: The Instrumentation type.
  • UIAUTOMATION: The uiautomation type.
  • UIAUTOMATOR: The uiautomator type.
  • XCTEST: The XCode test type.

tMessage :: Lens' Test (Maybe Text) Source

A message about the test's result.

tStarted :: Lens' Test (Maybe UTCTime) Source

The test's start time.

UniqueProblem

data UniqueProblem Source

A collection of one or more problems, grouped by their result.

See: uniqueProblem smart constructor.

uniqueProblem :: UniqueProblem Source

Creates a value of UniqueProblem with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

upProblems :: Lens' UniqueProblem [Problem] Source

Information about the problems.

upMessage :: Lens' UniqueProblem (Maybe Text) Source

A message about the unique problems' result.

Upload

data Upload Source

An app or a set of one or more tests to upload or that have been uploaded.

See: upload smart constructor.

upload :: Upload Source

Creates a value of Upload with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

uStatus :: Lens' Upload (Maybe UploadStatus) Source

The upload's status.

Must be one of the following values:

  • FAILED: A failed status.
  • INITIALIZED: An initialized status.
  • PROCESSING: A processing status.
  • SUCCEEDED: A succeeded status.

uArn :: Lens' Upload (Maybe Text) Source

The upload's ARN.

uCreated :: Lens' Upload (Maybe UTCTime) Source

When the upload was created.

uUrl :: Lens' Upload (Maybe Text) Source

The pre-signed Amazon S3 URL that was used to store a file through a corresponding PUT request.

uName :: Lens' Upload (Maybe Text) Source

The upload's file name.

uMetadata :: Lens' Upload (Maybe Text) Source

The upload's metadata. For example, for Android, this contains information that is parsed from the manifest and is displayed in the AWS Device Farm console after the associated app is uploaded.

uType :: Lens' Upload (Maybe UploadType) Source

The upload's type.

Must be one of the following values:

  • ANDROID_APP: An Android upload.
  • IOS_APP: An iOS upload.
  • EXTERNAL_DATA: An external data upload.
  • APPIUM_JAVA_JUNIT_TEST_PACKAGE: An Appium Java JUnit test package upload.
  • APPIUM_JAVA_TESTNG_TEST_PACKAGE: An Appium Java TestNG test package upload.
  • CALABASH_TEST_PACKAGE: A Calabash test package upload.
  • INSTRUMENTATION_TEST_PACKAGE: An instrumentation upload.
  • UIAUTOMATOR_TEST_PACKAGE: A uiautomator test package upload.
  • XCTEST_TEST_PACKAGE: An XCode test package upload.

uMessage :: Lens' Upload (Maybe Text) Source

A message about the upload's result.

uContentType :: Lens' Upload (Maybe Text) Source

The upload's content type (for example, "application/octet-stream").