#[non_exhaustive]pub struct ScheduleRunConfiguration {
pub extra_data_package_arn: Option<String>,
pub network_profile_arn: Option<String>,
pub locale: Option<String>,
pub location: Option<Location>,
pub vpce_configuration_arns: Option<Vec<String>>,
pub customer_artifact_paths: Option<CustomerArtifactPaths>,
pub radios: Option<Radios>,
pub auxiliary_apps: Option<Vec<String>>,
pub billing_method: Option<BillingMethod>,
}Expand description
Represents the settings for a run. Includes things like location, radio states, auxiliary apps, and network profiles.
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.extra_data_package_arn: Option<String>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.
network_profile_arn: Option<String>Reserved for internal use.
locale: Option<String>Information about the locale that is used for the run.
location: Option<Location>Information about the location that is used for the run.
vpce_configuration_arns: Option<Vec<String>>An array of ARNs for your VPC endpoint configurations.
customer_artifact_paths: Option<CustomerArtifactPaths>Input CustomerArtifactPaths object for the scheduled run configuration.
radios: Option<Radios>Information about the radio states for the run.
auxiliary_apps: Option<Vec<String>>A list of upload ARNs for app packages to be installed with your app.
billing_method: 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.
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) -> &[String]
pub fn vpce_configuration_arns(&self) -> &[String]
An array of ARNs for your VPC endpoint configurations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .vpce_configuration_arns.is_none().
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) -> &[String]
pub fn auxiliary_apps(&self) -> &[String]
A list of upload ARNs for app packages to be installed with your app.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .auxiliary_apps.is_none().
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() -> ScheduleRunConfigurationBuilder
pub fn builder() -> ScheduleRunConfigurationBuilder
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 for ScheduleRunConfiguration
impl PartialEq 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 ==.