[][src]Struct rusoto_devicefarm::Rule

pub struct Rule {
    pub attribute: Option<String>,
    pub operator: Option<String>,
    pub value: Option<String>,
}

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_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]

impl<'de> Deserialize<'de> for Rule[src]

Auto Trait Implementations

impl Send for Rule

impl Sync for Rule

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self