Interface CfnDevicePool.RuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDevicePool.RuleProperty.Jsii$Proxy
Enclosing class:
CfnDevicePool

@Stability(Stable) public static interface CfnDevicePool.RuleProperty extends software.amazon.jsii.JsiiSerializable
Represents a condition for a device pool.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.devicefarm.*;
 RuleProperty ruleProperty = RuleProperty.builder()
         .attribute("attribute")
         .operator("operator")
         .value("value")
         .build();
 

See Also: