Tutorial: Hapus geofences - Amazon Location Service

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

Tutorial: Hapus geofences

Anda dapat menghapus geofences dari koleksi geofence menggunakan konsol Lokasi Amazon, lokasi, AWS CLI atau Amazon Location. APIs

Console

Untuk menghapus geofence menggunakan konsol Lokasi Amazon

Awas

Operasi ini menghapus sumber daya secara permanen.

  1. Buka konsol Lokasi Amazon di https://console.aws.amazon.com/location/.

  2. Pilih koleksi Geofence dari panel navigasi kiri.

  3. Di bawah Koleksi geofence saya, pilih tautan nama koleksi geofence target.

  4. Di bawah Geofences, pilih geofence target.

  5. Pilih Hapus geofence.

API

Gunakan BatchDeleteGeofence operasi dari Amazon Location GeofencesAPIs.

Contoh berikut adalah API permintaan untuk menghapus geofences dari koleksi geofence ExampleCollection.

POST /geofencing/v0/collections/ExampleCollection/delete-geofences Content-type: application/json { "GeofenceIds": [ "ExampleGeofence11" ] }

Berikut ini adalah contoh respon sukses untukBatchDeleteGeofence.

HTTP/1.1 200
CLI

Gunakan perintah batch-delete-geofence.

Contoh berikut adalah AWS CLI perintah untuk menghapus geofences dari koleksi geofence ExampleCollection.

aws location batch-delete-geofence \ --collection-name "ExampleCollection" \ --geofence-ids "ExampleGeofence11"