Class: Aws::LocationService::Types::ForecastGeofenceEventsDeviceState

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb

Overview

The device's position and speed.

Constant Summary collapse

SENSITIVE =
[:position]

Instance Attribute Summary collapse

Instance Attribute Details

#positionArray<Float>

The device's position.

Returns:

  • (Array<Float>)


3039
3040
3041
3042
3043
3044
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3039

class ForecastGeofenceEventsDeviceState < Struct.new(
  :position,
  :speed)
  SENSITIVE = [:position]
  include Aws::Structure
end

#speedFloat

The device's speed.

Returns:

  • (Float)


3039
3040
3041
3042
3043
3044
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3039

class ForecastGeofenceEventsDeviceState < Struct.new(
  :position,
  :speed)
  SENSITIVE = [:position]
  include Aws::Structure
end