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.
4642 4643 4644 4645 4646 4647 4648 4649 |
# File 'lib/aws-sdk-fms/types.rb', line 4642 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.
4642 4643 4644 4645 4646 4647 4648 4649 |
# File 'lib/aws-sdk-fms/types.rb', line 4642 class Route < Struct.new( :destination_type, :target_type, :destination, :target) SENSITIVE = [] include Aws::Structure end |