Class: Aws::SecurityHub::Types::NetworkConnectionAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::NetworkConnectionAction
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Provided if ActionType
is NETWORK_CONNECTION
. It provides details
about the attempted network connection that was detected.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blocked ⇒ Boolean
Indicates whether the network connection attempt was blocked.
-
#connection_direction ⇒ String
The direction of the network connection request (
IN
orOUT
). -
#local_port_details ⇒ Types::ActionLocalPortDetails
Information about the port on the EC2 instance.
-
#protocol ⇒ String
The protocol used to make the network connection request.
-
#remote_ip_details ⇒ Types::ActionRemoteIpDetails
Information about the remote IP address that issued the network connection request.
-
#remote_port_details ⇒ Types::ActionRemotePortDetails
Information about the port on the remote IP address.
Instance Attribute Details
#blocked ⇒ Boolean
Indicates whether the network connection attempt was blocked.
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#connection_direction ⇒ String
The direction of the network connection request (IN
or OUT
).
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#local_port_details ⇒ Types::ActionLocalPortDetails
Information about the port on the EC2 instance.
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol used to make the network connection request.
Length Constraints: Minimum length of 1. Maximum length of 64.
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#remote_ip_details ⇒ Types::ActionRemoteIpDetails
Information about the remote IP address that issued the network connection request.
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#remote_port_details ⇒ Types::ActionRemotePortDetails
Information about the port on the remote IP address.
26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26205 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |