Class: Aws::Pinpoint::Types::GPSPointDimension
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::GPSPointDimension
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass GPSPointDimension data as a hash:
{
coordinates: { # required
latitude: 1.0, # required
longitude: 1.0, # required
},
range_in_kilometers: 1.0,
}
Specifies GPS-based criteria for including or excluding endpoints from a segment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#coordinates ⇒ Types::GPSCoordinates
The GPS coordinates to measure distance from.
-
#range_in_kilometers ⇒ Float
The range, in kilometers, from the GPS coordinates.
Instance Attribute Details
#coordinates ⇒ Types::GPSCoordinates
The GPS coordinates to measure distance from.
9027 9028 9029 9030 9031 9032 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 9027 class GPSPointDimension < Struct.new( :coordinates, :range_in_kilometers) SENSITIVE = [] include Aws::Structure end |
#range_in_kilometers ⇒ Float
The range, in kilometers, from the GPS coordinates.
9027 9028 9029 9030 9031 9032 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 9027 class GPSPointDimension < Struct.new( :coordinates, :range_in_kilometers) SENSITIVE = [] include Aws::Structure end |