Class: Aws::SecurityHub::Types::NetworkPathComponent
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::NetworkPathComponent
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Information about a network path component.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_id ⇒ String
The identifier of a component in the network path.
-
#component_type ⇒ String
The type of component.
-
#egress ⇒ Types::NetworkHeader
Information about the component that comes after the current component in the network path.
-
#ingress ⇒ Types::NetworkHeader
Information about the component that comes before the current node in the network path.
Instance Attribute Details
#component_id ⇒ String
The identifier of a component in the network path.
Length Constraints: Minimum of 1. Maximum of 32.
27123 27124 27125 27126 27127 27128 27129 27130 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27123 class NetworkPathComponent < Struct.new( :component_id, :component_type, :egress, :ingress) SENSITIVE = [] include Aws::Structure end |
#component_type ⇒ String
The type of component.
Length Constraints: Minimum of 1. Maximum of 32.
27123 27124 27125 27126 27127 27128 27129 27130 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27123 class NetworkPathComponent < Struct.new( :component_id, :component_type, :egress, :ingress) SENSITIVE = [] include Aws::Structure end |
#egress ⇒ Types::NetworkHeader
Information about the component that comes after the current component in the network path.
27123 27124 27125 27126 27127 27128 27129 27130 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27123 class NetworkPathComponent < Struct.new( :component_id, :component_type, :egress, :ingress) SENSITIVE = [] include Aws::Structure end |
#ingress ⇒ Types::NetworkHeader
Information about the component that comes before the current node in the network path.
27123 27124 27125 27126 27127 27128 27129 27130 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27123 class NetworkPathComponent < Struct.new( :component_id, :component_type, :egress, :ingress) SENSITIVE = [] include Aws::Structure end |