Class: Aws::DirectConnect::Types::AsPathSegment

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#pathArray<Integer>

The autonomous system (AS) numbers in the segment.

Returns:

  • (Array<Integer>)


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_typeString

The type of the AS path segment.

The valid values are seq (an ordered AS_SEQUENCE) and set (an unordered AS_SET).

Returns:

  • (String)


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