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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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)


25098
25099
25100
25101
25102
25103
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25098

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

#lonFloat

The longitude of the location.

Returns:

  • (Float)


25098
25099
25100
25101
25102
25103
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25098

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