Class: Aws::GeoRoutes::Types::RouteSideOfStreetOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteSideOfStreetOptions
- Defined in:
- gems/aws-sdk-georoutes/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
-
#position ⇒ Array<Float>
Position in World Geodetic System (WGS 84) format: [longitude, latitude].
-
#use_with ⇒ String
Strategy that defines when the side of street position should be used.
Instance Attribute Details
#position ⇒ Array<Float>
Position in World Geodetic System (WGS 84) format: [longitude, latitude].
5038 5039 5040 5041 5042 5043 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5038 class RouteSideOfStreetOptions < Struct.new( :position, :use_with) SENSITIVE = [:position] include Aws::Structure end |
#use_with ⇒ String
Strategy that defines when the side of street position should be used.
Default value: DividedStreetOnly
5038 5039 5040 5041 5042 5043 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 5038 class RouteSideOfStreetOptions < Struct.new( :position, :use_with) SENSITIVE = [:position] include Aws::Structure end |