Class: Aws::GuardDuty::Types::GeoLocation

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

Overview

Contains information about the location of the remote IP address. By default, GuardDuty returns Geolocation with Lat and Lon as 0.0.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latFloat

The latitude information of the remote IP address.

Returns:

  • (Float)


5430
5431
5432
5433
5434
5435
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5430

class GeoLocation < Struct.new(
  :lat,
  :lon)
  SENSITIVE = []
  include Aws::Structure
end

#lonFloat

The longitude information of the remote IP address.

Returns:

  • (Float)


5430
5431
5432
5433
5434
5435
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 5430

class GeoLocation < Struct.new(
  :lat,
  :lon)
  SENSITIVE = []
  include Aws::Structure
end