#[non_exhaustive]pub struct GetDevicePoolCompatibilityInput {
pub device_pool_arn: Option<String>,
pub app_arn: Option<String>,
pub test_type: Option<TestType>,
pub test: Option<ScheduleRunTest>,
pub configuration: Option<ScheduleRunConfiguration>,
}Expand description
Represents a request to the get device pool compatibility operation.
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.device_pool_arn: Option<String>The device pool's ARN.
app_arn: Option<String>The ARN of the app that is associated with the specified device pool.
test_type: Option<TestType>The test type for the specified device pool.
Allowed values include the following:
-
BUILTIN_FUZZ.
-
BUILTIN_EXPLORER. For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.
-
APPIUM_JAVA_JUNIT.
-
APPIUM_JAVA_TESTNG.
-
APPIUM_PYTHON.
-
APPIUM_NODE.
-
APPIUM_RUBY.
-
APPIUM_WEB_JAVA_JUNIT.
-
APPIUM_WEB_JAVA_TESTNG.
-
APPIUM_WEB_PYTHON.
-
APPIUM_WEB_NODE.
-
APPIUM_WEB_RUBY.
-
CALABASH.
-
INSTRUMENTATION.
-
UIAUTOMATION.
-
UIAUTOMATOR.
-
XCTEST.
-
XCTEST_UI.
test: Option<ScheduleRunTest>Information about the uploaded test to be run against the device pool.
configuration: Option<ScheduleRunConfiguration>An object that contains information about the settings for a run.
Implementations
sourceimpl GetDevicePoolCompatibilityInput
impl GetDevicePoolCompatibilityInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetDevicePoolCompatibility, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetDevicePoolCompatibility, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetDevicePoolCompatibility>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetDevicePoolCompatibilityInput
sourceimpl GetDevicePoolCompatibilityInput
impl GetDevicePoolCompatibilityInput
sourcepub fn device_pool_arn(&self) -> Option<&str>
pub fn device_pool_arn(&self) -> Option<&str>
The device pool's ARN.
sourcepub fn app_arn(&self) -> Option<&str>
pub fn app_arn(&self) -> Option<&str>
The ARN of the app that is associated with the specified device pool.
sourcepub fn test_type(&self) -> Option<&TestType>
pub fn test_type(&self) -> Option<&TestType>
The test type for the specified device pool.
Allowed values include the following:
-
BUILTIN_FUZZ.
-
BUILTIN_EXPLORER. For Android, an app explorer that traverses an Android app, interacting with it and capturing screenshots at the same time.
-
APPIUM_JAVA_JUNIT.
-
APPIUM_JAVA_TESTNG.
-
APPIUM_PYTHON.
-
APPIUM_NODE.
-
APPIUM_RUBY.
-
APPIUM_WEB_JAVA_JUNIT.
-
APPIUM_WEB_JAVA_TESTNG.
-
APPIUM_WEB_PYTHON.
-
APPIUM_WEB_NODE.
-
APPIUM_WEB_RUBY.
-
CALABASH.
-
INSTRUMENTATION.
-
UIAUTOMATION.
-
UIAUTOMATOR.
-
XCTEST.
-
XCTEST_UI.
sourcepub fn test(&self) -> Option<&ScheduleRunTest>
pub fn test(&self) -> Option<&ScheduleRunTest>
Information about the uploaded test to be run against the device pool.
sourcepub fn configuration(&self) -> Option<&ScheduleRunConfiguration>
pub fn configuration(&self) -> Option<&ScheduleRunConfiguration>
An object that contains information about the settings for a run.
Trait Implementations
sourceimpl Clone for GetDevicePoolCompatibilityInput
impl Clone for GetDevicePoolCompatibilityInput
sourcefn clone(&self) -> GetDevicePoolCompatibilityInput
fn clone(&self) -> GetDevicePoolCompatibilityInput
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 PartialEq<GetDevicePoolCompatibilityInput> for GetDevicePoolCompatibilityInput
impl PartialEq<GetDevicePoolCompatibilityInput> for GetDevicePoolCompatibilityInput
sourcefn eq(&self, other: &GetDevicePoolCompatibilityInput) -> bool
fn eq(&self, other: &GetDevicePoolCompatibilityInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GetDevicePoolCompatibilityInput) -> bool
fn ne(&self, other: &GetDevicePoolCompatibilityInput) -> bool
This method tests for !=.
impl StructuralPartialEq for GetDevicePoolCompatibilityInput
Auto Trait Implementations
impl RefUnwindSafe for GetDevicePoolCompatibilityInput
impl Send for GetDevicePoolCompatibilityInput
impl Sync for GetDevicePoolCompatibilityInput
impl Unpin for GetDevicePoolCompatibilityInput
impl UnwindSafe for GetDevicePoolCompatibilityInput
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