Class: Aws::SecurityHub::Types::ActionLocalPortDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::ActionLocalPortDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass ActionLocalPortDetails data as a hash:
{
port: 1,
port_name: "NonEmptyString",
}
For NetworkConnectionAction
and PortProbeDetails
,
LocalPortDetails
provides information about the local port that was
involved in the action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#port ⇒ Integer
The number of the port.
-
#port_name ⇒ String
The port name of the local connection.
Instance Attribute Details
#port ⇒ Integer
The number of the port.
331 332 333 334 335 336 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 331 class ActionLocalPortDetails < Struct.new( :port, :port_name) SENSITIVE = [] include Aws::Structure end |
#port_name ⇒ String
The port name of the local connection.
331 332 333 334 335 336 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 331 class ActionLocalPortDetails < Struct.new( :port, :port_name) SENSITIVE = [] include Aws::Structure end |