Skip to content

Describe Collection

rekognition_describe_collection R Documentation

Describes the specified collection

Description

Describes the specified collection. You can use describe_collection to get information, such as the number of faces indexed into a collection and the version of the model used by the collection for face detection.

For more information, see Describing a Collection in the Amazon Rekognition Developer Guide.

Usage

rekognition_describe_collection(CollectionId)

Arguments

CollectionId

[required] The ID of the collection to describe.

Value

A list with the following syntax:

list(
  FaceCount = 123,
  FaceModelVersion = "string",
  CollectionARN = "string",
  CreationTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  UserCount = 123
)

Request syntax

svc$describe_collection(
  CollectionId = "string"
)