Class: Aws::SecurityHub::Types::NetworkConnectionAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::NetworkConnectionAction
- Includes:
- Aws::Structure
- Defined in:
- 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` or `OUT`).
-
#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.
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 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`).
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 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.
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 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.
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 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.
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 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.
27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 |
# File 'lib/aws-sdk-securityhub/types.rb', line 27059 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |