[−][src]Struct rusoto_devicefarm::Rule
Represents a condition for a device pool.
Fields
attribute: Option<String>
The rule's stringified attribute. For example, specify the value as ""abc""
.
The supported operators for each attribute are provided in the following list.
- APPIUMVERSION
-
The Appium version for the test.
Supported operators:
CONTAINS
- ARN
-
The Amazon Resource Name (ARN) of the device. For example, "arn:aws:devicefarm:us-west-2::device:12345Example".
Supported operators:
EQUALS
,IN
,NOTIN
- AVAILABILITY
-
The current availability of the device. Valid values are "AVAILABLE", "HIGHLYAVAILABLE", "BUSY", or "TEMPORARYNOTAVAILABLE".
Supported operators:
EQUALS
- FLEETTYPE
-
The fleet type. Valid values are "PUBLIC" or "PRIVATE".
Supported operators:
EQUALS
- FORMFACTOR
-
The device form factor. Valid values are "PHONE" or "TABLET".
Supported operators:
EQUALS
,IN
,NOTIN
- INSTANCEARN
-
The Amazon Resource Name (ARN) of the device instance.
Supported operators:
IN
,NOTIN
- INSTANCELABELS
-
The label of the device instance.
Supported operators:
CONTAINS
- MANUFACTURER
-
The device manufacturer. For example, "Apple".
Supported operators:
EQUALS
,IN
,NOTIN
- MODEL
-
The device model, such as "Apple iPad Air 2" or "Google Pixel".
Supported operators:
CONTAINS
,EQUALS
,IN
,NOTIN
- OSVERSION
-
The operating system version. For example, "10.3.2".
Supported operators:
EQUALS
,GREATERTHAN
,GREATERTHANOREQUALS
,IN
,LESSTHAN
,LESSTHANOREQUALS
,NOTIN
- PLATFORM
-
The device platform. Valid values are "ANDROID" or "IOS".
Supported operators:
EQUALS
,IN
,NOTIN
- REMOTEACCESSENABLED
-
Whether the device is enabled for remote access. Valid values are "TRUE" or "FALSE".
Supported operators:
EQUALS
- REMOTEDEBUGENABLED
-
Whether the device is enabled for remote debugging. Valid values are "TRUE" or "FALSE".
Supported operators:
EQUALS
operator: Option<String>
Specifies how Device Farm compares the rule's attribute to the value. For the operators that are supported by each attribute, see the attribute descriptions.
value: Option<String>
The rule's value.
Trait Implementations
impl PartialEq<Rule> for Rule
[src]
impl Default for Rule
[src]
impl Clone for Rule
[src]
fn clone(&self) -> Rule
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Rule
[src]
impl Serialize for Rule
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for Rule
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self