Class: Aws::Detective::Types::NewGeolocationDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Detective::Types::NewGeolocationDetail
- Defined in:
- gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb
Overview
Details new geolocations used either at the resource or account level. For example, lists an observed geolocation that is an infrequent or unused location based on previous user activity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ip_address ⇒ String
IP address using which the resource was accessed.
-
#is_new_for_entire_account ⇒ Boolean
Checks if the geolocation is new for the entire account.
-
#location ⇒ String
Location where the resource was accessed.
Instance Attribute Details
#ip_address ⇒ String
IP address using which the resource was accessed.
1454 1455 1456 1457 1458 1459 1460 |
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 1454 class NewGeolocationDetail < Struct.new( :location, :ip_address, :is_new_for_entire_account) SENSITIVE = [] include Aws::Structure end |
#is_new_for_entire_account ⇒ Boolean
Checks if the geolocation is new for the entire account.
1454 1455 1456 1457 1458 1459 1460 |
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 1454 class NewGeolocationDetail < Struct.new( :location, :ip_address, :is_new_for_entire_account) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
Location where the resource was accessed.
1454 1455 1456 1457 1458 1459 1460 |
# File 'gems/aws-sdk-detective/lib/aws-sdk-detective/types.rb', line 1454 class NewGeolocationDetail < Struct.new( :location, :ip_address, :is_new_for_entire_account) SENSITIVE = [] include Aws::Structure end |