Struct rusoto_devicefarm::CustomerArtifactPaths[][src]

pub struct CustomerArtifactPaths {
    pub android_paths: Option<Vec<String>>,
    pub device_host_paths: Option<Vec<String>>,
    pub ios_paths: Option<Vec<String>>,
}

A JSON object specifying the paths where the artifacts generated by the customer's tests, on the device or in the test environment, will be pulled from.

Specify deviceHostPaths and optionally specify either iosPaths or androidPaths.

For web app tests, you can specify both iosPaths and androidPaths.

Fields

Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests will be pulled from.

Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests will be pulled from.

Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests will be pulled from.

Trait Implementations

impl Default for CustomerArtifactPaths
[src]

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

impl Debug for CustomerArtifactPaths
[src]

Formats the value using the given formatter. Read more

impl Clone for CustomerArtifactPaths
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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