[][src]Struct rusoto_devicefarm::Artifact

pub struct Artifact {
    pub arn: Option<String>,
    pub extension: Option<String>,
    pub name: Option<String>,
    pub type_: Option<String>,
    pub url: Option<String>,
}

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

Fields

arn: Option<String>

The artifact's ARN.

extension: Option<String>

The artifact's file extension.

name: Option<String>

The artifact's name.

type_: Option<String>

The artifact's type.

Allowed values include the following:

  • UNKNOWN

  • SCREENSHOT

  • DEVICELOG

  • MESSAGELOG

  • VIDEOLOG

  • RESULTLOG

  • SERVICELOG

  • WEBKITLOG

  • INSTRUMENTATIONOUTPUT

  • EXERCISERMONKEYOUTPUT: the artifact (log) generated by an Android fuzz test.

  • CALABASHJSONOUTPUT

  • CALABASHPRETTYOUTPUT

  • CALABASHSTANDARDOUTPUT

  • CALABASHJAVAXMLOUTPUT

  • AUTOMATIONOUTPUT

  • APPIUMSERVEROUTPUT

  • APPIUMJAVAOUTPUT

  • APPIUMJAVAXMLOUTPUT

  • APPIUMPYTHONOUTPUT

  • APPIUMPYTHONXMLOUTPUT

  • EXPLOREREVENTLOG

  • EXPLORERSUMMARYLOG

  • APPLICATIONCRASHREPORT

  • XCTESTLOG

  • VIDEO

  • CUSTOMERARTIFACT

  • CUSTOMERARTIFACTLOG

  • TESTSPECOUTPUT

url: Option<String>

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

Trait Implementations

impl Clone for Artifact[src]

impl Debug for Artifact[src]

impl Default for Artifact[src]

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

impl PartialEq<Artifact> for Artifact[src]

impl StructuralPartialEq for Artifact[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.