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>)


3090
3091
3092
3093
3094
3095
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3090

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

#speedFloat

The device's speed.

Returns:

  • (Float)


3090
3091
3092
3093
3094
3095
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3090

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