[][src]Struct rusoto_devicefarm::ListUploadsRequest

pub struct ListUploadsRequest {
    pub arn: String,
    pub next_token: Option<String>,
    pub type_: Option<String>,
}

Represents a request to the list uploads operation.

Fields

arn: String

The Amazon Resource Name (ARN) of the project for which you want to list uploads.

next_token: Option<String>

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.

type_: Option<String>

The type of upload.

Must be one of the following values:

  • ANDROIDAPP: An Android upload.

  • IOSAPP: An iOS upload.

  • WEBAPP: A web application upload.

  • EXTERNALDATA: An external data upload.

  • APPIUMJAVAJUNITTESTPACKAGE: An Appium Java JUnit test package upload.

  • APPIUMJAVATESTNGTESTPACKAGE: An Appium Java TestNG test package upload.

  • APPIUMPYTHONTESTPACKAGE: An Appium Python test package upload.

  • APPIUMNODETESTPACKAGE: An Appium Node.js test package upload.

  • APPIUMRUBYTESTPACKAGE: An Appium Ruby test package upload.

  • APPIUMWEBJAVAJUNITTESTPACKAGE: An Appium Java JUnit test package upload for a web app.

  • APPIUMWEBJAVATESTNGTESTPACKAGE: An Appium Java TestNG test package upload for a web app.

  • APPIUMWEBPYTHONTESTPACKAGE: An Appium Python test package upload for a web app.

  • APPIUMWEBNODETESTPACKAGE: An Appium Node.js test package upload for a web app.

  • APPIUMWEBRUBYTESTPACKAGE: An Appium Ruby test package upload for a web app.

  • CALABASHTESTPACKAGE: A Calabash test package upload.

  • INSTRUMENTATIONTESTPACKAGE: An instrumentation upload.

  • UIAUTOMATIONTESTPACKAGE: A uiautomation test package upload.

  • UIAUTOMATORTESTPACKAGE: A uiautomator test package upload.

  • XCTESTTESTPACKAGE: An Xcode test package upload.

  • XCTESTUITESTPACKAGE: An Xcode UI test package upload.

  • APPIUMJAVAJUNITTESTSPEC: An Appium Java JUnit test spec upload.

  • APPIUMJAVATESTNGTESTSPEC: An Appium Java TestNG test spec upload.

  • APPIUMPYTHONTESTSPEC: An Appium Python test spec upload.

  • APPIUMNODETESTSPEC: An Appium Node.js test spec upload.

  • APPIUMRUBYTESTSPEC: An Appium Ruby test spec upload.

  • APPIUMWEBJAVAJUNITTESTSPEC: An Appium Java JUnit test spec upload for a web app.

  • APPIUMWEBJAVATESTNGTESTSPEC: An Appium Java TestNG test spec upload for a web app.

  • APPIUMWEBPYTHONTESTSPEC: An Appium Python test spec upload for a web app.

  • APPIUMWEBNODETESTSPEC: An Appium Node.js test spec upload for a web app.

  • APPIUMWEBRUBYTESTSPEC: An Appium Ruby test spec upload for a web app.

  • INSTRUMENTATIONTESTSPEC: An instrumentation test spec upload.

  • XCTESTUITESTSPEC: An Xcode UI test spec upload.

Trait Implementations

impl Clone for ListUploadsRequest[src]

impl Default for ListUploadsRequest[src]

impl PartialEq<ListUploadsRequest> for ListUploadsRequest[src]

impl Debug for ListUploadsRequest[src]

impl Serialize for ListUploadsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self