#[non_exhaustive]pub struct Builder { /* private fields */ }Expand description
A builder for ScheduleRunConfiguration
Implementations
sourceimpl Builder
impl Builder
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 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 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 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 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 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 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 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 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 build(self) -> ScheduleRunConfiguration
pub fn build(self) -> ScheduleRunConfiguration
Consumes the builder and constructs a ScheduleRunConfiguration
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
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