Struct rusoto_devicefarm::ScheduleRunConfiguration[][src]

pub struct ScheduleRunConfiguration {
    pub auxiliary_apps: Option<Vec<String>>,
    pub billing_method: Option<String>,
    pub customer_artifact_paths: Option<CustomerArtifactPaths>,
    pub extra_data_package_arn: Option<String>,
    pub locale: Option<String>,
    pub location: Option<Location>,
    pub network_profile_arn: Option<String>,
    pub radios: Option<Radios>,
}

Represents the settings for a run. Includes things like location, radio states, auxiliary apps, and network profiles.

Fields

A list of auxiliary apps for the run.

Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is metered.

Input CustomerArtifactPaths object for the scheduled run configuration.

The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm will extract to external data for Android or the app's sandbox for iOS.

Information about the locale that is used for the run.

Information about the location that is used for the run.

Reserved for internal use.

Information about the radio states for the run.

Trait Implementations

impl Default for ScheduleRunConfiguration
[src]

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

impl Debug for ScheduleRunConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for ScheduleRunConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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