Class: Aws::DirectConnect::Types::AsPathSegment
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectConnect::Types::AsPathSegment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directconnect/types.rb
Overview
A segment of an autonomous system (AS) path.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#path ⇒ Array<Integer>
The autonomous system (AS) numbers in the segment.
-
#path_type ⇒ String
The type of the AS path segment.
Instance Attribute Details
#path ⇒ Array<Integer>
The autonomous system (AS) numbers in the segment.
241 242 243 244 245 246 |
# File 'lib/aws-sdk-directconnect/types.rb', line 241 class AsPathSegment < Struct.new( :path_type, :path) SENSITIVE = [] include Aws::Structure end |
#path_type ⇒ String
The type of the AS path segment.
The valid values are seq (an ordered AS_SEQUENCE) and set (an
unordered AS_SET).
241 242 243 244 245 246 |
# File 'lib/aws-sdk-directconnect/types.rb', line 241 class AsPathSegment < Struct.new( :path_type, :path) SENSITIVE = [] include Aws::Structure end |