Create Geofence Collection
locationservice_create_geofence_collection | R Documentation |
Creates a geofence collection, which manages and stores geofences¶
Description¶
Creates a geofence collection, which manages and stores geofences.
Usage¶
locationservice_create_geofence_collection(CollectionName, PricingPlan,
PricingPlanDataSource, Description, Tags, KmsKeyId)
Arguments¶
CollectionName |
[required] A custom name for the geofence collection. Requirements:
|
PricingPlan |
No longer used. If included, the only allowed value is
|
PricingPlanDataSource |
This parameter is no longer used. |
Description |
An optional description for the geofence collection. |
Tags |
Applies one or more tags to the geofence collection. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them. Format: Restrictions:
|
KmsKeyId |
A key identifier for an Amazon Web Services KMS customer managed key. Enter a key ID, key ARN, alias name, or alias ARN. |
Value¶
A list with the following syntax:
list(
CollectionName = "string",
CollectionArn = "string",
CreateTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$create_geofence_collection(
CollectionName = "string",
PricingPlan = "RequestBasedUsage"|"MobileAssetTracking"|"MobileAssetManagement",
PricingPlanDataSource = "string",
Description = "string",
Tags = list(
"string"
),
KmsKeyId = "string"
)