Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

rekognition_delete_faces

Deletes faces from a collection


Description

Deletes faces from a collection. You specify a collection ID and an array of face IDs to remove from the collection.

This operation requires permissions to perform the rekognition:DeleteFaces action.

Usage

rekognition_delete_faces(CollectionId, FaceIds)

Arguments

CollectionId

[required] Collection from which to remove the specific faces.

FaceIds

[required] An array of face IDs to delete.

Value

A list with the following syntax:

list(
  DeletedFaces = list(
    "string"
  )
)

Request syntax

svc$delete_faces(
  CollectionId = "string",
  FaceIds = list(
    "string"
  )
)

Examples

## Not run: 
# This operation deletes one or more faces from a Rekognition collection.
svc$delete_faces(
  CollectionId = "myphotos",
  FaceIds = list(
    "ff43d742-0c13-5d16-a3e8-03d3f58e980b"
  )
)

## End(Not run)

paws.machine.learning

Amazon Web Services Machine Learning Services

v0.1.11
Apache License (>= 2.0)
Authors
David Kretch [aut, cre], Adam Banker [aut], Amazon.com, Inc. [cph]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.