Class: Aws::GeoPlaces::Types::AccessPoint

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

Overview

Position of the access point represented by longitude and latitude for a vehicle.

Constant Summary collapse

SENSITIVE =
[:position]

Instance Attribute Summary collapse

Instance Attribute Details

#positionArray<Float>

The position in World Geodetic System (WGS 84) format: [longitude, latitude].

Returns:

  • (Array<Float>)


36
37
38
39
40
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 36

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