Class: Aws::GeoRoutes::Types::RouteSideOfStreetOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-georoutes/types.rb

Overview

Options to configure matching the provided position to a side of the street.

Constant Summary collapse

SENSITIVE =
[:position]

Instance Attribute Summary collapse

Instance Attribute Details

#positionArray<Float>

Position defined as ‘[longitude, latitude]`.

Returns:

  • (Array<Float>)


4344
4345
4346
4347
4348
4349
# File 'lib/aws-sdk-georoutes/types.rb', line 4344

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

#use_withString

Strategy that defines when the side of street position should be used.

Default Value: ‘DividedStreetOnly`

Returns:

  • (String)


4344
4345
4346
4347
4348
4349
# File 'lib/aws-sdk-georoutes/types.rb', line 4344

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