Class: Aws::GeoRoutes::Types::RouteResponseNotice
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GeoRoutes::Types::RouteResponseNotice
 
 
- 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.
 - 
  
    
      #impact  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Impact corresponding to the issue.
 
Instance Attribute Details
#code ⇒ String
Code corresponding to the issue.
      4246 4247 4248 4249 4250 4251  | 
    
      # File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4246 class RouteResponseNotice < Struct.new( :code, :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.
      4246 4247 4248 4249 4250 4251  | 
    
      # File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 4246 class RouteResponseNotice < Struct.new( :code, :impact) SENSITIVE = [] include Aws::Structure end  |