[][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 the app to schedule a run.

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, as well as 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 Default for ScheduleRunRequest[src]

impl PartialEq<ScheduleRunRequest> for ScheduleRunRequest[src]

impl Clone for ScheduleRunRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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]

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self