[][src]Struct rusoto_devicefarm::Upload

pub struct Upload {
    pub arn: Option<String>,
    pub content_type: Option<String>,
    pub created: Option<f64>,
    pub message: Option<String>,
    pub metadata: Option<String>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
    pub url: Option<String>,
}

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

Fields

The upload's ARN.

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

When the upload was created.

A message about the upload's result.

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.

The upload's file name.

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.

The upload's type.

Must be one of the following values:

  • ANDROIDAPP: An Android upload.

  • IOSAPP: An iOS upload.

  • WEBAPP: A web appliction 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.

  • APPIUMWEBJAVAJUNITTESTPACKAGE: An Appium Java JUnit test package upload.

  • APPIUMWEBJAVATESTNGTESTPACKAGE: An Appium Java TestNG test package upload.

  • APPIUMWEBPYTHONTESTPACKAGE: An Appium Python test package upload.

  • 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.

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

Trait Implementations

impl Clone for Upload
[src]

Performs copy-assignment from source. Read more

impl Default for Upload
[src]

impl PartialEq<Upload> for Upload
[src]

impl Debug for Upload
[src]

impl<'de> Deserialize<'de> for Upload
[src]

Auto Trait Implementations

impl Send for Upload

impl Sync for Upload

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T