Struct rusoto_devicefarm::ScheduleRunRequest[][src]

pub struct ScheduleRunRequest {
    pub app_arn: Option<String>,
    pub configuration: Option<ScheduleRunConfiguration>,
    pub device_pool_arn: String,
    pub execution_configuration: Option<ExecutionConfiguration>,
    pub name: Option<String>,
    pub project_arn: String,
    pub test: ScheduleRunTest,
}

Represents a request to the schedule run operation.

Fields

The ARN of the app to schedule a run.

Information about the settings for the run to be scheduled.

The ARN of the device pool for the run to be scheduled.

Specifies configuration information about a test run, such as the execution timeout (in minutes).

The name for the run to be scheduled.

The ARN of the project for the run to be scheduled.

Information about the test for the run to be scheduled.

Trait Implementations

impl Default for ScheduleRunRequest
[src]

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

impl Debug for ScheduleRunRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ScheduleRunRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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