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

Because remote debugging is no longer supported, this filter is ignored.

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 Clone for Rule[src]

impl Debug for Rule[src]

impl Default for Rule[src]

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

impl PartialEq<Rule> for Rule[src]

impl Serialize for Rule[src]

impl StructuralPartialEq for Rule[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.