Contains geofence geometry details.

interface BatchPutGeofenceRequestEntry {
    GeofenceId: undefined | string;
    GeofenceProperties?: Record<string, string>;
    Geometry: undefined | GeofenceGeometry;
}

Properties

GeofenceId: undefined | string

The identifier for the geofence to be stored in a given geofence collection.

GeofenceProperties?: Record<string, string>

Associates one of more properties with the geofence. A property is a key-value pair stored with the geofence and added to any geofence event triggered with that geofence.

Format: "key" : "value"

Geometry: undefined | GeofenceGeometry

Contains the details of the position of the geofence. Can be either a polygon or a circle. Including both will return a validation error.

Each geofence polygon can have a maximum of 1,000 vertices.