Class: Aws::FMS::Types::Route
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::Route
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
Describes a route in a route table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ String
The destination of the route.
-
#destination_type ⇒ String
The type of destination for the route.
-
#target ⇒ String
The route’s target.
-
#target_type ⇒ String
The type of target for the route.
Instance Attribute Details
#destination ⇒ String
The destination of the route.
4654 4655 4656 4657 4658 4659 4660 4661 |
# File 'lib/aws-sdk-fms/types.rb', line 4654 class Route < Struct.new( :destination_type, :target_type, :destination, :target) SENSITIVE = [] include Aws::Structure end |
#destination_type ⇒ String
The type of destination for the route.
4654 4655 4656 4657 4658 4659 4660 4661 |
# File 'lib/aws-sdk-fms/types.rb', line 4654 class Route < Struct.new( :destination_type, :target_type, :destination, :target) SENSITIVE = [] include Aws::Structure end |