Class: Aws::LocationService::Types::BatchPutGeofenceRequestEntry

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#geofence_idString

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

Returns:

  • (String)


489
490
491
492
493
494
495
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 489

class BatchPutGeofenceRequestEntry < Struct.new(
  :geofence_id,
  :geofence_properties,
  :geometry)
  SENSITIVE = [:geofence_properties]
  include Aws::Structure
end

#geofence_propertiesHash<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"

Returns:

  • (Hash<String,String>)


489
490
491
492
493
494
495
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 489

class BatchPutGeofenceRequestEntry < Struct.new(
  :geofence_id,
  :geofence_properties,
  :geometry)
  SENSITIVE = [:geofence_properties]
  include Aws::Structure
end

#geometryTypes::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.



489
490
491
492
493
494
495
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 489

class BatchPutGeofenceRequestEntry < Struct.new(
  :geofence_id,
  :geofence_properties,
  :geometry)
  SENSITIVE = [:geofence_properties]
  include Aws::Structure
end