Class: Aws::DeviceFarm::Types::Radios
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::Radios
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents the set of radios and their states on a device. Examples of radios include Wi-Fi, GPS, Bluetooth, and NFC.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bluetooth ⇒ Boolean
True if Bluetooth is enabled at the beginning of the test.
-
#gps ⇒ Boolean
True if GPS is enabled at the beginning of the test.
-
#nfc ⇒ Boolean
True if NFC is enabled at the beginning of the test.
-
#wifi ⇒ Boolean
True if Wi-Fi is enabled at the beginning of the test.
Instance Attribute Details
#bluetooth ⇒ Boolean
True if Bluetooth is enabled at the beginning of the test. Otherwise, false.
4199 4200 4201 4202 4203 4204 4205 4206 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 4199 class Radios < Struct.new( :wifi, :bluetooth, :nfc, :gps) SENSITIVE = [] include Aws::Structure end |
#gps ⇒ Boolean
True if GPS is enabled at the beginning of the test. Otherwise, false.
4199 4200 4201 4202 4203 4204 4205 4206 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 4199 class Radios < Struct.new( :wifi, :bluetooth, :nfc, :gps) SENSITIVE = [] include Aws::Structure end |