Class: Aws::GeoRoutes::Types::RouteExclusionOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoRoutes::Types::RouteExclusionOptions
- Defined in:
- gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb
Overview
Specifies strict exclusion options for the route calculation. This setting mandates that the router will avoid any routes that include the specified options, rather than merely attempting to minimize them.
Constant Summary collapse
- SENSITIVE =
[:countries]
Instance Attribute Summary collapse
-
#countries ⇒ Array<String>
List of countries to be avoided defined by two-letter or three-letter country codes.
Instance Attribute Details
#countries ⇒ Array<String>
List of countries to be avoided defined by two-letter or three-letter country codes.
2874 2875 2876 2877 2878 |
# File 'gems/aws-sdk-georoutes/lib/aws-sdk-georoutes/types.rb', line 2874 class RouteExclusionOptions < Struct.new( :countries) SENSITIVE = [:countries] include Aws::Structure end |