Class: Aws::SecurityHub::Types::GeoLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::GeoLocation
- 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
-
#lat ⇒ Float
The latitude of the location.
-
#lon ⇒ Float
The longitude of the location.
Instance Attribute Details
#lat ⇒ Float
The latitude of the location.
25221 25222 25223 25224 25225 25226 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25221 class GeoLocation < Struct.new( :lon, :lat) SENSITIVE = [] include Aws::Structure end |
#lon ⇒ Float
The longitude of the location.
25221 25222 25223 25224 25225 25226 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25221 class GeoLocation < Struct.new( :lon, :lat) SENSITIVE = [] include Aws::Structure end |