Struct rusoto_devicefarm::Upload[][src]

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 Default for Upload
[src]

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

impl Debug for Upload
[src]

Formats the value using the given formatter. Read more

impl Clone for Upload
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Upload
[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

impl Send for Upload

impl Sync for Upload