Class: Aws::SecurityHub::Types::GeoLocation

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

Overview

Provides the latitude and longitude coordinates of a location.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#latFloat

The latitude of the location.

Returns:

  • (Float)


25229
25230
25231
25232
25233
25234
# File 'lib/aws-sdk-securityhub/types.rb', line 25229

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

#lonFloat

The longitude of the location.

Returns:

  • (Float)


25229
25230
25231
25232
25233
25234
# File 'lib/aws-sdk-securityhub/types.rb', line 25229

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