Class: Aws::LocationService::Types::BatchPutGeofenceRequestEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::BatchPutGeofenceRequestEntry
- Defined in:
- gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb
Overview
Contains geofence geometry details.
Constant Summary collapse
- SENSITIVE =
[:geofence_properties]
Instance Attribute Summary collapse
-
#geofence_id ⇒ String
The identifier for the geofence to be stored in a given geofence collection.
-
#geofence_properties ⇒ Hash<String,String>
Associates one of more properties with the geofence.
-
#geometry ⇒ Types::GeofenceGeometry
Contains the details to specify the position of the geofence.
Instance Attribute Details
#geofence_id ⇒ String
The identifier for the geofence to be stored in a given geofence collection.
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 491 class BatchPutGeofenceRequestEntry < Struct.new( :geofence_id, :geometry, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#geofence_properties ⇒ Hash<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"
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 491 class BatchPutGeofenceRequestEntry < Struct.new( :geofence_id, :geometry, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#geometry ⇒ Types::GeofenceGeometry
Contains the details to specify the position of the geofence. Can be a polygon, a circle or a polygon encoded in Geobuf format. Including multiple selections will return a validation error.
491 492 493 494 495 496 497 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 491 class BatchPutGeofenceRequestEntry < Struct.new( :geofence_id, :geometry, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |