Class: Aws::IoTWireless::Types::GnssCapture
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTWireless::Types::GnssCapture
- Defined in:
- gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb
Overview
A single GNSS scan capture containing the scan payload and optional capture time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capture_time ⇒ Float
Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST).
-
#payload ⇒ String
Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.
Instance Attribute Details
#capture_time ⇒ Float
Optional parameter that gives an estimate of the time when the GNSS scan information is taken, in seconds GPS time (GPST). If capture time is not specified, the local server time is used.
3169 3170 3171 3172 3173 3174 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 3169 class GnssCapture < Struct.new( :payload, :capture_time) SENSITIVE = [] include Aws::Structure end |
#payload ⇒ String
Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.
3169 3170 3171 3172 3173 3174 |
# File 'gems/aws-sdk-iotwireless/lib/aws-sdk-iotwireless/types.rb', line 3169 class GnssCapture < Struct.new( :payload, :capture_time) SENSITIVE = [] include Aws::Structure end |