Class: Aws::GeoRoutes::Types::RoadSnapNotice

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

Overview

Notices provide information around factors that may have influenced snapping in a manner atypical to the standard use cases.

Constant Summary collapse

SENSITIVE =
[:code, :title, :trace_point_indexes]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

Code corresponding to the issue.

Returns:

  • (String)


2154
2155
2156
2157
2158
2159
2160
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2154

class RoadSnapNotice < Struct.new(
  :code,
  :title,
  :trace_point_indexes)
  SENSITIVE = [:code, :title, :trace_point_indexes]
  include Aws::Structure
end

#titleString

The notice title.

Returns:

  • (String)


2154
2155
2156
2157
2158
2159
2160
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2154

class RoadSnapNotice < Struct.new(
  :code,
  :title,
  :trace_point_indexes)
  SENSITIVE = [:code, :title, :trace_point_indexes]
  include Aws::Structure
end

#trace_point_indexesArray<Integer>

TracePoint indices for which the provided notice code corresponds to.

Returns:

  • (Array<Integer>)


2154
2155
2156
2157
2158
2159
2160
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2154

class RoadSnapNotice < Struct.new(
  :code,
  :title,
  :trace_point_indexes)
  SENSITIVE = [:code, :title, :trace_point_indexes]
  include Aws::Structure
end