#[non_exhaustive]pub struct ScheduleRunConfiguration { /* private fields */ }Expand description
Represents the settings for a run. Includes things like location, radio states, auxiliary apps, and network profiles.
Implementations§
source§impl ScheduleRunConfiguration
impl ScheduleRunConfiguration
sourcepub fn extra_data_package_arn(&self) -> Option<&str>
pub fn extra_data_package_arn(&self) -> Option<&str>
The ARN of the extra data for the run. The extra data is a .zip file that AWS Device Farm extracts to external data for Android or the app's sandbox for iOS.
sourcepub fn network_profile_arn(&self) -> Option<&str>
pub fn network_profile_arn(&self) -> Option<&str>
Reserved for internal use.
sourcepub fn location(&self) -> Option<&Location>
pub fn location(&self) -> Option<&Location>
Information about the location that is used for the run.
sourcepub fn vpce_configuration_arns(&self) -> Option<&[String]>
pub fn vpce_configuration_arns(&self) -> Option<&[String]>
An array of ARNs for your VPC endpoint configurations.
sourcepub fn customer_artifact_paths(&self) -> Option<&CustomerArtifactPaths>
pub fn customer_artifact_paths(&self) -> Option<&CustomerArtifactPaths>
Input CustomerArtifactPaths object for the scheduled run configuration.
sourcepub fn auxiliary_apps(&self) -> Option<&[String]>
pub fn auxiliary_apps(&self) -> Option<&[String]>
A list of upload ARNs for app packages to be installed with your app.
sourcepub fn billing_method(&self) -> Option<&BillingMethod>
pub fn billing_method(&self) -> Option<&BillingMethod>
Specifies the billing method for a test run: metered or unmetered. If the parameter is not specified, the default value is metered.
If you have purchased unmetered device slots, you must set this parameter to unmetered to make use of them. Otherwise, your run counts against your metered time.
source§impl ScheduleRunConfiguration
impl ScheduleRunConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduleRunConfiguration.
Trait Implementations§
source§impl Clone for ScheduleRunConfiguration
impl Clone for ScheduleRunConfiguration
source§fn clone(&self) -> ScheduleRunConfiguration
fn clone(&self) -> ScheduleRunConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ScheduleRunConfiguration
impl Debug for ScheduleRunConfiguration
source§impl PartialEq<ScheduleRunConfiguration> for ScheduleRunConfiguration
impl PartialEq<ScheduleRunConfiguration> for ScheduleRunConfiguration
source§fn eq(&self, other: &ScheduleRunConfiguration) -> bool
fn eq(&self, other: &ScheduleRunConfiguration) -> bool
self and other values to be equal, and is used
by ==.