#[non_exhaustive]pub struct ScheduleRunConfigurationBuilder { /* private fields */ }Expand description
A builder for ScheduleRunConfiguration.
Implementations§
source§impl ScheduleRunConfigurationBuilder
impl ScheduleRunConfigurationBuilder
sourcepub fn extra_data_package_arn(self, input: impl Into<String>) -> Self
pub fn extra_data_package_arn(self, input: impl Into<String>) -> Self
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 set_extra_data_package_arn(self, input: Option<String>) -> Self
pub fn set_extra_data_package_arn(self, input: Option<String>) -> Self
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 get_extra_data_package_arn(&self) -> &Option<String>
pub fn get_extra_data_package_arn(&self) -> &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.
sourcepub fn network_profile_arn(self, input: impl Into<String>) -> Self
pub fn network_profile_arn(self, input: impl Into<String>) -> Self
Reserved for internal use.
sourcepub fn set_network_profile_arn(self, input: Option<String>) -> Self
pub fn set_network_profile_arn(self, input: Option<String>) -> Self
Reserved for internal use.
sourcepub fn get_network_profile_arn(&self) -> &Option<String>
pub fn get_network_profile_arn(&self) -> &Option<String>
Reserved for internal use.
sourcepub fn locale(self, input: impl Into<String>) -> Self
pub fn locale(self, input: impl Into<String>) -> Self
Information about the locale that is used for the run.
sourcepub fn set_locale(self, input: Option<String>) -> Self
pub fn set_locale(self, input: Option<String>) -> Self
Information about the locale that is used for the run.
sourcepub fn get_locale(&self) -> &Option<String>
pub fn get_locale(&self) -> &Option<String>
Information about the locale that is used for the run.
sourcepub fn location(self, input: Location) -> Self
pub fn location(self, input: Location) -> Self
Information about the location that is used for the run.
sourcepub fn set_location(self, input: Option<Location>) -> Self
pub fn set_location(self, input: Option<Location>) -> Self
Information about the location that is used for the run.
sourcepub fn get_location(&self) -> &Option<Location>
pub fn get_location(&self) -> &Option<Location>
Information about the location that is used for the run.
sourcepub fn vpce_configuration_arns(self, input: impl Into<String>) -> Self
pub fn vpce_configuration_arns(self, input: impl Into<String>) -> Self
Appends an item to vpce_configuration_arns.
To override the contents of this collection use set_vpce_configuration_arns.
An array of ARNs for your VPC endpoint configurations.
sourcepub fn set_vpce_configuration_arns(self, input: Option<Vec<String>>) -> Self
pub fn set_vpce_configuration_arns(self, input: Option<Vec<String>>) -> Self
An array of ARNs for your VPC endpoint configurations.
sourcepub fn get_vpce_configuration_arns(&self) -> &Option<Vec<String>>
pub fn get_vpce_configuration_arns(&self) -> &Option<Vec<String>>
An array of ARNs for your VPC endpoint configurations.
sourcepub fn customer_artifact_paths(self, input: CustomerArtifactPaths) -> Self
pub fn customer_artifact_paths(self, input: CustomerArtifactPaths) -> Self
Input CustomerArtifactPaths object for the scheduled run configuration.
sourcepub fn set_customer_artifact_paths(
self,
input: Option<CustomerArtifactPaths>
) -> Self
pub fn set_customer_artifact_paths( self, input: Option<CustomerArtifactPaths> ) -> Self
Input CustomerArtifactPaths object for the scheduled run configuration.
sourcepub fn get_customer_artifact_paths(&self) -> &Option<CustomerArtifactPaths>
pub fn get_customer_artifact_paths(&self) -> &Option<CustomerArtifactPaths>
Input CustomerArtifactPaths object for the scheduled run configuration.
sourcepub fn set_radios(self, input: Option<Radios>) -> Self
pub fn set_radios(self, input: Option<Radios>) -> Self
Information about the radio states for the run.
sourcepub fn get_radios(&self) -> &Option<Radios>
pub fn get_radios(&self) -> &Option<Radios>
Information about the radio states for the run.
sourcepub fn auxiliary_apps(self, input: impl Into<String>) -> Self
pub fn auxiliary_apps(self, input: impl Into<String>) -> Self
Appends an item to auxiliary_apps.
To override the contents of this collection use set_auxiliary_apps.
A list of upload ARNs for app packages to be installed with your app.
sourcepub fn set_auxiliary_apps(self, input: Option<Vec<String>>) -> Self
pub fn set_auxiliary_apps(self, input: Option<Vec<String>>) -> Self
A list of upload ARNs for app packages to be installed with your app.
sourcepub fn get_auxiliary_apps(&self) -> &Option<Vec<String>>
pub fn get_auxiliary_apps(&self) -> &Option<Vec<String>>
A list of upload ARNs for app packages to be installed with your app.
sourcepub fn billing_method(self, input: BillingMethod) -> Self
pub fn billing_method(self, input: BillingMethod) -> Self
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.
sourcepub fn set_billing_method(self, input: Option<BillingMethod>) -> Self
pub fn set_billing_method(self, input: Option<BillingMethod>) -> Self
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.
sourcepub fn get_billing_method(&self) -> &Option<BillingMethod>
pub fn get_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.
sourcepub fn build(self) -> ScheduleRunConfiguration
pub fn build(self) -> ScheduleRunConfiguration
Consumes the builder and constructs a ScheduleRunConfiguration.
Trait Implementations§
source§impl Clone for ScheduleRunConfigurationBuilder
impl Clone for ScheduleRunConfigurationBuilder
source§fn clone(&self) -> ScheduleRunConfigurationBuilder
fn clone(&self) -> ScheduleRunConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ScheduleRunConfigurationBuilder
impl Default for ScheduleRunConfigurationBuilder
source§fn default() -> ScheduleRunConfigurationBuilder
fn default() -> ScheduleRunConfigurationBuilder
source§impl PartialEq for ScheduleRunConfigurationBuilder
impl PartialEq for ScheduleRunConfigurationBuilder
source§fn eq(&self, other: &ScheduleRunConfigurationBuilder) -> bool
fn eq(&self, other: &ScheduleRunConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.