Class: Aws::DeviceFarm::Types::Radios
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::Radios
- Defined in:
- gems/aws-sdk-devicefarm/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.
4194 4195 4196 4197 4198 4199 4200 4201 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4194 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.
4194 4195 4196 4197 4198 4199 4200 4201 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4194 class Radios < Struct.new( :wifi, :bluetooth, :nfc, :gps) SENSITIVE = [] include Aws::Structure end |
#nfc ⇒ Boolean
True if NFC is enabled at the beginning of the test. Otherwise, false.
4194 4195 4196 4197 4198 4199 4200 4201 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4194 class Radios < Struct.new( :wifi, :bluetooth, :nfc, :gps) SENSITIVE = [] include Aws::Structure end |
#wifi ⇒ Boolean
True if Wi-Fi is enabled at the beginning of the test. Otherwise, false.
4194 4195 4196 4197 4198 4199 4200 4201 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 4194 class Radios < Struct.new( :wifi, :bluetooth, :nfc, :gps) SENSITIVE = [] include Aws::Structure end |