Class: Aws::Detective::Types::FlaggedIpAddressDetail

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb

Overview

Contains information on suspicious IP addresses identified as indicators of compromise. This indicator is derived from Amazon Web Services threat intelligence.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ip_addressString

IP address of the suspicious entity.

Returns:

  • (String)


504
505
506
507
508
509
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 504

class FlaggedIpAddressDetail < Struct.new(
  :ip_address,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

Details the reason the IP address was flagged as suspicious.

Returns:

  • (String)


504
505
506
507
508
509
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 504

class FlaggedIpAddressDetail < Struct.new(
  :ip_address,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end