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
When making an API call, you may pass NetworkConnectionAction data as a hash:
{
connection_direction: "NonEmptyString",
remote_ip_details: {
ip_address_v4: "NonEmptyString",
organization: {
asn: 1,
asn_org: "NonEmptyString",
isp: "NonEmptyString",
org: "NonEmptyString",
},
country: {
country_code: "NonEmptyString",
country_name: "NonEmptyString",
},
city: {
city_name: "NonEmptyString",
},
geo_location: {
lon: 1.0,
lat: 1.0,
},
},
remote_port_details: {
port: 1,
port_name: "NonEmptyString",
},
local_port_details: {
port: 1,
port_name: "NonEmptyString",
},
protocol: "NonEmptyString",
blocked: false,
}
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.
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 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
).
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 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.
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 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.
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 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.
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 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.
33919 33920 33921 33922 33923 33924 33925 33926 33927 33928 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 33919 class NetworkConnectionAction < Struct.new( :connection_direction, :remote_ip_details, :remote_port_details, :local_port_details, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |