Class: Aws::SecurityHub::Types::ActionRemoteIpDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::ActionRemoteIpDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
When making an API call, you may pass ActionRemoteIpDetails data as a hash:
{
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,
},
}
For AwsApiAction
, NetworkConnectionAction
, and PortProbeAction
,
RemoteIpDetails
provides information about the remote IP address
that was involved in the action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#city ⇒ Types::City
The city where the remote IP address is located.
-
#country ⇒ Types::Country
The country where the remote IP address is located.
-
#geo_location ⇒ Types::GeoLocation
The coordinates of the location of the remote IP address.
-
#ip_address_v4 ⇒ String
The IP address.
-
#organization ⇒ Types::IpOrganizationDetails
The internet service provider (ISP) organization associated with the remote IP address.
Instance Attribute Details
#city ⇒ Types::City
The city where the remote IP address is located.
357 358 359 360 361 362 363 364 365 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 357 class ActionRemoteIpDetails < Struct.new( :ip_address_v4, :organization, :country, :city, :geo_location) SENSITIVE = [] include Aws::Structure end |
#country ⇒ Types::Country
The country where the remote IP address is located.
357 358 359 360 361 362 363 364 365 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 357 class ActionRemoteIpDetails < Struct.new( :ip_address_v4, :organization, :country, :city, :geo_location) SENSITIVE = [] include Aws::Structure end |
#geo_location ⇒ Types::GeoLocation
The coordinates of the location of the remote IP address.
357 358 359 360 361 362 363 364 365 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 357 class ActionRemoteIpDetails < Struct.new( :ip_address_v4, :organization, :country, :city, :geo_location) SENSITIVE = [] include Aws::Structure end |
#ip_address_v4 ⇒ String
The IP address.
357 358 359 360 361 362 363 364 365 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 357 class ActionRemoteIpDetails < Struct.new( :ip_address_v4, :organization, :country, :city, :geo_location) SENSITIVE = [] include Aws::Structure end |
#organization ⇒ Types::IpOrganizationDetails
The internet service provider (ISP) organization associated with the remote IP address.
357 358 359 360 361 362 363 364 365 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 357 class ActionRemoteIpDetails < Struct.new( :ip_address_v4, :organization, :country, :city, :geo_location) SENSITIVE = [] include Aws::Structure end |