Skip to main content

geofence_collections

Creates, updates, deletes or gets a geofence_collection resource or lists geofence_collections in a region

Overview

Namegeofence_collections
TypeResource
DescriptionDefinition of AWS::Location::GeofenceCollection Resource Type
Idaws.location.geofence_collections

Fields

NameDatatypeDescription
collection_arnstring
collection_namestring
create_timestringThe datetime value in ISO 8601 format. The timezone is always UTC. (YYYY-MM-DDThh:mm:ss.sssZ)
descriptionstring
kms_key_idstring
pricing_planstring
pricing_plan_data_sourcestringThis shape is deprecated since 2022-02-01: Deprecated. No longer allowed.
tagsarrayAn array of key-value pairs to apply to this resource.
update_timestringThe datetime value in ISO 8601 format. The timezone is always UTC. (YYYY-MM-DDThh:mm:ss.sssZ)
arnstring
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTCollectionName, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all geofence_collections in a region.

SELECT
region,
collection_arn,
collection_name,
create_time,
description,
kms_key_id,
pricing_plan,
pricing_plan_data_source,
tags,
update_time,
arn
FROM aws.location.geofence_collections
WHERE region = 'us-east-1';

Gets all properties from an individual geofence_collection.

SELECT
region,
collection_arn,
collection_name,
create_time,
description,
kms_key_id,
pricing_plan,
pricing_plan_data_source,
tags,
update_time,
arn
FROM aws.location.geofence_collections
WHERE region = 'us-east-1' AND data__Identifier = '<CollectionName>';

INSERT example

Use the following StackQL query and manifest file to create a new geofence_collection resource, using stack-deploy.

/*+ create */
INSERT INTO aws.location.geofence_collections (
CollectionName,
region
)
SELECT
'{{ CollectionName }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.location.geofence_collections
WHERE data__Identifier = '<CollectionName>'
AND region = 'us-east-1';

Permissions

To operate on the geofence_collections resource, the following permissions are required:

Create

geo:CreateGeofenceCollection,
geo:DescribeGeofenceCollection,
geo:TagResource,
geo:UntagResource,
kms:DescribeKey,
kms:CreateGrant

Read

geo:DescribeGeofenceCollection,
kms:DescribeKey

Update

geo:CreateGeofenceCollection,
geo:DescribeGeofenceCollection,
geo:TagResource,
geo:UntagResource,
kms:DescribeKey,
kms:CreateGrant,
geo:UpdateGeofenceCollection

Delete

geo:DeleteGeofenceCollection,
geo:DescribeGeofenceCollection

List

geo:ListGeofenceCollections