Class: Aws::GeoRoutes::Types::RouteVehicleNotice
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteVehicleNotice
- Defined in:
- gems/aws-sdk-georoutes/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
-
#code ⇒ String
Code corresponding to the issue.
-
#details ⇒ Array<Types::RouteVehicleNoticeDetail>
Additional details of the notice.
-
#impact ⇒ String
Impact corresponding to the issue.
Instance Attribute Details
#code ⇒ String
Code corresponding to the issue.
6050 6051 6052 6053 6054 6055 6056 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 6050 class RouteVehicleNotice < Struct.new( :code, :details, :impact) SENSITIVE = [] include Aws::Structure end |
#details ⇒ Array<Types::RouteVehicleNoticeDetail>
Additional details of the notice.
6050 6051 6052 6053 6054 6055 6056 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 6050 class RouteVehicleNotice < Struct.new( :code, :details, :impact) SENSITIVE = [] include Aws::Structure end |
#impact ⇒ String
Impact corresponding to the issue. While Low impact notices can be safely ignored, High impact notices must be evaluated further to determine the impact.
6050 6051 6052 6053 6054 6055 6056 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 6050 class RouteVehicleNotice < Struct.new( :code, :details, :impact) SENSITIVE = [] include Aws::Structure end |