Class: Aws::GeoRoutes::Types::RouteResponseNotice

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

Overview

Notices are additional information returned that indicate issues that occurred during route calculation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

Code corresponding to the issue.

Returns:

  • (String)


4180
4181
4182
4183
4184
4185
# File 'lib/aws-sdk-georoutes/types.rb', line 4180

class RouteResponseNotice < Struct.new(
  :code,
  :impact)
  SENSITIVE = []
  include Aws::Structure
end

#impactString

Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.

Returns:

  • (String)


4180
4181
4182
4183
4184
4185
# File 'lib/aws-sdk-georoutes/types.rb', line 4180

class RouteResponseNotice < Struct.new(
  :code,
  :impact)
  SENSITIVE = []
  include Aws::Structure
end