[][src]Struct rusoto_devicefarm::ScheduleRunRequest

pub struct ScheduleRunRequest {
    pub app_arn: Option<String>,
    pub configuration: Option<ScheduleRunConfiguration>,
    pub device_pool_arn: Option<String>,
    pub device_selection_configuration: Option<DeviceSelectionConfiguration>,
    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

app_arn: Option<String>

The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.

configuration: Option<ScheduleRunConfiguration>

Information about the settings for the run to be scheduled.

device_pool_arn: Option<String>

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

device_selection_configuration: Option<DeviceSelectionConfiguration>

The filter criteria used to dynamically select a set of devices for a test run and the maximum number of devices to be included in the run.

Either devicePoolArn or deviceSelectionConfiguration is required in a request.

execution_configuration: Option<ExecutionConfiguration>

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

name: Option<String>

The name for the run to be scheduled.

project_arn: String

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

test: ScheduleRunTest

Information about the test for the run to be scheduled.

Trait Implementations

impl Clone for ScheduleRunRequest[src]

impl Debug for ScheduleRunRequest[src]

impl Default for ScheduleRunRequest[src]

impl PartialEq<ScheduleRunRequest> for ScheduleRunRequest[src]

impl Serialize for ScheduleRunRequest[src]

impl StructuralPartialEq for ScheduleRunRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.