Struct aws_sdk_devicefarm::input::ScheduleRunInput
source · [−]#[non_exhaustive]pub struct ScheduleRunInput {
pub project_arn: Option<String>,
pub app_arn: Option<String>,
pub device_pool_arn: Option<String>,
pub device_selection_configuration: Option<DeviceSelectionConfiguration>,
pub name: Option<String>,
pub test: Option<ScheduleRunTest>,
pub configuration: Option<ScheduleRunConfiguration>,
pub execution_configuration: Option<ExecutionConfiguration>,
}Expand description
Represents a request to the schedule run operation.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_arn: Option<String>The ARN of the project for the run to be scheduled.
app_arn: Option<String>The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.
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.
name: Option<String>The name for the run to be scheduled.
test: Option<ScheduleRunTest>Information about the test for the run to be scheduled.
configuration: Option<ScheduleRunConfiguration>Information about the settings for the run to be scheduled.
execution_configuration: Option<ExecutionConfiguration>Specifies configuration information about a test run, such as the execution timeout (in minutes).
Implementations
sourceimpl ScheduleRunInput
impl ScheduleRunInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ScheduleRun, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ScheduleRun, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ScheduleRun>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduleRunInput
sourceimpl ScheduleRunInput
impl ScheduleRunInput
sourcepub fn project_arn(&self) -> Option<&str>
pub fn project_arn(&self) -> Option<&str>
The ARN of the project for the run to be scheduled.
sourcepub fn app_arn(&self) -> Option<&str>
pub fn app_arn(&self) -> Option<&str>
The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.
sourcepub fn device_pool_arn(&self) -> Option<&str>
pub fn device_pool_arn(&self) -> Option<&str>
The ARN of the device pool for the run to be scheduled.
sourcepub fn device_selection_configuration(
&self
) -> Option<&DeviceSelectionConfiguration>
pub fn device_selection_configuration(
&self
) -> 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.
sourcepub fn test(&self) -> Option<&ScheduleRunTest>
pub fn test(&self) -> Option<&ScheduleRunTest>
Information about the test for the run to be scheduled.
sourcepub fn configuration(&self) -> Option<&ScheduleRunConfiguration>
pub fn configuration(&self) -> Option<&ScheduleRunConfiguration>
Information about the settings for the run to be scheduled.
sourcepub fn execution_configuration(&self) -> Option<&ExecutionConfiguration>
pub fn execution_configuration(&self) -> Option<&ExecutionConfiguration>
Specifies configuration information about a test run, such as the execution timeout (in minutes).
Trait Implementations
sourceimpl Clone for ScheduleRunInput
impl Clone for ScheduleRunInput
sourcefn clone(&self) -> ScheduleRunInput
fn clone(&self) -> ScheduleRunInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ScheduleRunInput
impl Debug for ScheduleRunInput
sourceimpl PartialEq<ScheduleRunInput> for ScheduleRunInput
impl PartialEq<ScheduleRunInput> for ScheduleRunInput
sourcefn eq(&self, other: &ScheduleRunInput) -> bool
fn eq(&self, other: &ScheduleRunInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ScheduleRunInput) -> bool
fn ne(&self, other: &ScheduleRunInput) -> bool
This method tests for !=.
impl StructuralPartialEq for ScheduleRunInput
Auto Trait Implementations
impl RefUnwindSafe for ScheduleRunInput
impl Send for ScheduleRunInput
impl Sync for ScheduleRunInput
impl Unpin for ScheduleRunInput
impl UnwindSafe for ScheduleRunInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more