Class: Aws::GeoRoutes::Types::IsolineThresholds

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

Overview

Threshold to be used for the isoline calculation. Up to 3 thresholds per provided type can be requested.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#distanceArray<Integer>

Distance to be used for the isoline calculation.

Returns:

  • (Array<Integer>)


1201
1202
1203
1204
1205
1206
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1201

class IsolineThresholds < Struct.new(
  :distance,
  :time)
  SENSITIVE = []
  include Aws::Structure
end

#timeArray<Integer>

Time to be used for the isoline calculation.

Returns:

  • (Array<Integer>)


1201
1202
1203
1204
1205
1206
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 1201

class IsolineThresholds < Struct.new(
  :distance,
  :time)
  SENSITIVE = []
  include Aws::Structure
end