[][src]Struct rusoto_devicefarm::ScheduleRunRequest

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 Clone for ScheduleRunRequest
[src]

Performs copy-assignment from source. Read more

impl Default for ScheduleRunRequest
[src]

impl PartialEq<ScheduleRunRequest> for ScheduleRunRequest
[src]

impl Debug for ScheduleRunRequest
[src]

impl Serialize for ScheduleRunRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T