Class: Aws::LocationService::Types::ListGeofenceResponseEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::ListGeofenceResponseEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Contains a list of geofences stored in a given geofence collection.
<note markdown=“1”> The returned geometry will always match the geometry format used when the geofence was created.
</note>
Constant Summary collapse
- SENSITIVE =
[:geofence_properties]
Instance Attribute Summary collapse
-
#create_time ⇒ Time
The timestamp for when the geofence was stored in a geofence collection in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`.
-
#geofence_id ⇒ String
The geofence identifier.
-
#geofence_properties ⇒ Hash<String,String>
User defined properties of the geofence.
-
#geometry ⇒ Types::GeofenceGeometry
Contains the geofence geometry details describing a polygon or a circle.
-
#status ⇒ String
Identifies the state of the geofence.
-
#update_time ⇒ Time
The timestamp for when the geofence was last updated in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`.
Instance Attribute Details
#create_time ⇒ Time
The timestamp for when the geofence was stored in a geofence collection in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#geofence_id ⇒ String
The geofence identifier.
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#geofence_properties ⇒ Hash<String,String>
User defined properties of 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”`
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#geometry ⇒ Types::GeofenceGeometry
Contains the geofence geometry details describing a polygon or a circle.
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#status ⇒ String
Identifies the state of the geofence. A geofence will hold one of the following states:
-
‘ACTIVE` — The geofence has been indexed by the system.
-
‘PENDING` — The geofence is being processed by the system.
-
‘FAILED` — The geofence failed to be indexed by the system.
-
‘DELETED` — The geofence has been deleted from the system index.
-
‘DELETING` — The geofence is being deleted from the system index.
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |
#update_time ⇒ Time
The timestamp for when the geofence was last updated in [ISO 8601] format: ‘YYYY-MM-DDThh:mm:ss.sssZ`
4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 |
# File 'lib/aws-sdk-locationservice/types.rb', line 4211 class ListGeofenceResponseEntry < Struct.new( :geofence_id, :geometry, :status, :create_time, :update_time, :geofence_properties) SENSITIVE = [:geofence_properties] include Aws::Structure end |