pub struct ScheduleRunFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to ScheduleRun.
Schedules a run.
Implementations§
source§impl ScheduleRunFluentBuilder
impl ScheduleRunFluentBuilder
sourcepub fn as_input(&self) -> &ScheduleRunInputBuilder
pub fn as_input(&self) -> &ScheduleRunInputBuilder
Access the ScheduleRun as a reference.
sourcepub async fn send(
self
) -> Result<ScheduleRunOutput, SdkError<ScheduleRunError, HttpResponse>>
pub async fn send( self ) -> Result<ScheduleRunOutput, SdkError<ScheduleRunError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<ScheduleRunOutput, ScheduleRunError, Self>
pub fn customize( self ) -> CustomizableOperation<ScheduleRunOutput, ScheduleRunError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn project_arn(self, input: impl Into<String>) -> Self
pub fn project_arn(self, input: impl Into<String>) -> Self
The ARN of the project for the run to be scheduled.
sourcepub fn set_project_arn(self, input: Option<String>) -> Self
pub fn set_project_arn(self, input: Option<String>) -> Self
The ARN of the project for the run to be scheduled.
sourcepub fn get_project_arn(&self) -> &Option<String>
pub fn get_project_arn(&self) -> &Option<String>
The ARN of the project for the run to be scheduled.
sourcepub fn app_arn(self, input: impl Into<String>) -> Self
pub fn app_arn(self, input: impl Into<String>) -> Self
The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.
sourcepub fn set_app_arn(self, input: Option<String>) -> Self
pub fn set_app_arn(self, input: Option<String>) -> Self
The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.
sourcepub fn get_app_arn(&self) -> &Option<String>
pub fn get_app_arn(&self) -> &Option<String>
The ARN of an application package to run tests against, created with CreateUpload. See ListUploads.
sourcepub fn device_pool_arn(self, input: impl Into<String>) -> Self
pub fn device_pool_arn(self, input: impl Into<String>) -> Self
The ARN of the device pool for the run to be scheduled.
sourcepub fn set_device_pool_arn(self, input: Option<String>) -> Self
pub fn set_device_pool_arn(self, input: Option<String>) -> Self
The ARN of the device pool for the run to be scheduled.
sourcepub fn get_device_pool_arn(&self) -> &Option<String>
pub fn get_device_pool_arn(&self) -> &Option<String>
The ARN of the device pool for the run to be scheduled.
sourcepub fn device_selection_configuration(
self,
input: DeviceSelectionConfiguration
) -> Self
pub fn device_selection_configuration( self, input: DeviceSelectionConfiguration ) -> Self
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 set_device_selection_configuration(
self,
input: Option<DeviceSelectionConfiguration>
) -> Self
pub fn set_device_selection_configuration( self, input: Option<DeviceSelectionConfiguration> ) -> Self
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 get_device_selection_configuration(
&self
) -> &Option<DeviceSelectionConfiguration>
pub fn get_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, input: ScheduleRunTest) -> Self
pub fn test(self, input: ScheduleRunTest) -> Self
Information about the test for the run to be scheduled.
sourcepub fn set_test(self, input: Option<ScheduleRunTest>) -> Self
pub fn set_test(self, input: Option<ScheduleRunTest>) -> Self
Information about the test for the run to be scheduled.
sourcepub fn get_test(&self) -> &Option<ScheduleRunTest>
pub fn get_test(&self) -> &Option<ScheduleRunTest>
Information about the test for the run to be scheduled.
sourcepub fn configuration(self, input: ScheduleRunConfiguration) -> Self
pub fn configuration(self, input: ScheduleRunConfiguration) -> Self
Information about the settings for the run to be scheduled.
sourcepub fn set_configuration(self, input: Option<ScheduleRunConfiguration>) -> Self
pub fn set_configuration(self, input: Option<ScheduleRunConfiguration>) -> Self
Information about the settings for the run to be scheduled.
sourcepub fn get_configuration(&self) -> &Option<ScheduleRunConfiguration>
pub fn get_configuration(&self) -> &Option<ScheduleRunConfiguration>
Information about the settings for the run to be scheduled.
sourcepub fn execution_configuration(self, input: ExecutionConfiguration) -> Self
pub fn execution_configuration(self, input: ExecutionConfiguration) -> Self
Specifies configuration information about a test run, such as the execution timeout (in minutes).
sourcepub fn set_execution_configuration(
self,
input: Option<ExecutionConfiguration>
) -> Self
pub fn set_execution_configuration( self, input: Option<ExecutionConfiguration> ) -> Self
Specifies configuration information about a test run, such as the execution timeout (in minutes).
sourcepub fn get_execution_configuration(&self) -> &Option<ExecutionConfiguration>
pub fn get_execution_configuration(&self) -> &Option<ExecutionConfiguration>
Specifies configuration information about a test run, such as the execution timeout (in minutes).
Trait Implementations§
source§impl Clone for ScheduleRunFluentBuilder
impl Clone for ScheduleRunFluentBuilder
source§fn clone(&self) -> ScheduleRunFluentBuilder
fn clone(&self) -> ScheduleRunFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more