Class: Aws::SecurityHub::Types::GeoLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::GeoLocation
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass GeoLocation data as a hash:
{
lon: 1.0,
lat: 1.0,
}
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.
31886 31887 31888 31889 31890 31891 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31886 class GeoLocation < Struct.new( :lon, :lat) SENSITIVE = [] include Aws::Structure end |
#lon ⇒ Float
The longitude of the location.
31886 31887 31888 31889 31890 31891 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31886 class GeoLocation < Struct.new( :lon, :lat) SENSITIVE = [] include Aws::Structure end |