Struct aws_sdk_devicefarm::model::ScheduleRunConfiguration
source · [−]#[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
sourceimpl 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.
sourceimpl ScheduleRunConfiguration
impl ScheduleRunConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ScheduleRunConfiguration
Trait Implementations
sourceimpl Clone for ScheduleRunConfiguration
impl Clone for ScheduleRunConfiguration
sourcefn clone(&self) -> ScheduleRunConfiguration
fn clone(&self) -> ScheduleRunConfiguration
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ScheduleRunConfiguration
impl Debug for ScheduleRunConfiguration
sourceimpl PartialEq<ScheduleRunConfiguration> for ScheduleRunConfiguration
impl PartialEq<ScheduleRunConfiguration> for ScheduleRunConfiguration
sourcefn eq(&self, other: &ScheduleRunConfiguration) -> bool
fn eq(&self, other: &ScheduleRunConfiguration) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ScheduleRunConfiguration) -> bool
fn ne(&self, other: &ScheduleRunConfiguration) -> bool
This method tests for !=.
impl StructuralPartialEq for ScheduleRunConfiguration
Auto Trait Implementations
impl RefUnwindSafe for ScheduleRunConfiguration
impl Send for ScheduleRunConfiguration
impl Sync for ScheduleRunConfiguration
impl Unpin for ScheduleRunConfiguration
impl UnwindSafe for ScheduleRunConfiguration
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