Class: Aws::LocationService::Types::PutGeofenceRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:geofence_properties]

Instance Attribute Summary collapse

Instance Attribute Details

#collection_nameString

The geofence collection to store the geofence in.

Returns:

  • (String)


5403
5404
5405
5406
5407
5408
5409
5410
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5403

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

#geofence_idString

An identifier for the geofence. For example, ExampleGeofence-1.

Returns:

  • (String)


5403
5404
5405
5406
5407
5408
5409
5410
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5403

class PutGeofenceRequest < Struct.new(
  :collection_name,
  :geofence_id,
  :geometry,
  :geofence_properties)
  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>)


5403
5404
5405
5406
5407
5408
5409
5410
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5403

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

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

The geofence polygon format supports a maximum of 1,000 vertices. The Geofence Geobuf format supports a maximum of 100,000 vertices.



5403
5404
5405
5406
5407
5408
5409
5410
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 5403

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