Class: Aws::IoTWireless::Types::GnssCapture

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#capture_timeFloat

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.

Returns:

  • (Float)


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

#payloadString

Payload that contains the GNSS scan result, or NAV message, in hexadecimal notation.

Returns:

  • (String)


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