Class: Aws::GeoRoutes::Types::IsolineSideOfStreetOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::IsolineSideOfStreetOptions
- 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
-
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
-
#use_with ⇒ String
Strategy that defines when the side of street position should be used.
Instance Attribute Details
#position ⇒ Array<Float>
Position defined as ‘[longitude, latitude]`.
1181 1182 1183 1184 1185 1186 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1181 class IsolineSideOfStreetOptions < 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. AnyStreet will always use the provided position.
Default Value: ‘DividedStreetOnly`
1181 1182 1183 1184 1185 1186 |
# File 'lib/aws-sdk-georoutes/types.rb', line 1181 class IsolineSideOfStreetOptions < Struct.new( :position, :use_with) SENSITIVE = [:position] include Aws::Structure end |