Class: Aws::SecurityHub::Types::NetworkHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::NetworkHeader
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass NetworkHeader data as a hash:
{
protocol: "NonEmptyString",
destination: {
address: ["NonEmptyString"],
port_ranges: [
{
begin: 1,
end: 1,
},
],
},
source: {
address: ["NonEmptyString"],
port_ranges: [
{
begin: 1,
end: 1,
},
],
},
}
Details about a network path component that occurs before or after the current component.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination ⇒ Types::NetworkPathComponentDetails
Information about the destination of the component.
-
#protocol ⇒ String
The protocol used for the component.
-
#source ⇒ Types::NetworkPathComponentDetails
Information about the origin of the component.
Instance Attribute Details
#destination ⇒ Types::NetworkPathComponentDetails
Information about the destination of the component.
20338 20339 20340 20341 20342 20343 20344 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 20338 class NetworkHeader < Struct.new( :protocol, :destination, :source) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol used for the component.
20338 20339 20340 20341 20342 20343 20344 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 20338 class NetworkHeader < Struct.new( :protocol, :destination, :source) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Types::NetworkPathComponentDetails
Information about the origin of the component.
20338 20339 20340 20341 20342 20343 20344 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 20338 class NetworkHeader < Struct.new( :protocol, :destination, :source) SENSITIVE = [] include Aws::Structure end |