Class: Aws::SecurityHub::Types::NetworkPathComponentDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::NetworkPathComponentDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass NetworkPathComponentDetails data as a hash:
{
address: ["NonEmptyString"],
port_ranges: [
{
begin: 1,
end: 1,
},
],
}
Information about the destination of the next component in the network path.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ Array<String>
The IP addresses of the destination.
-
#port_ranges ⇒ Array<Types::PortRange>
A list of port ranges for the destination.
Instance Attribute Details
#address ⇒ Array<String>
The IP addresses of the destination.
31185 31186 31187 31188 31189 31190 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31185 class NetworkPathComponentDetails < Struct.new( :address, :port_ranges) SENSITIVE = [] include Aws::Structure end |
#port_ranges ⇒ Array<Types::PortRange>
A list of port ranges for the destination.
31185 31186 31187 31188 31189 31190 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31185 class NetworkPathComponentDetails < Struct.new( :address, :port_ranges) SENSITIVE = [] include Aws::Structure end |