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]

[src]

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

impl Debug for ScheduleRunRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ScheduleRunRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations