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

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

Overview

Contains information about the location of the remote IP address.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latFloat

The latitude information of the remote IP address.

Returns:

  • (Float)


3092
3093
3094
3095
3096
3097
# File 'lib/aws-sdk-guardduty/types.rb', line 3092

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

#lonFloat

The longitude information of the remote IP address.

Returns:

  • (Float)


3092
3093
3094
3095
3096
3097
# File 'lib/aws-sdk-guardduty/types.rb', line 3092

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