aws.rekognition.describe_collection
Example SQL Queries
SELECT * FROMaws.rekognition.describe_collectionWHERE"collection_id" = 'VALUE';Description
Describes the specified collection. You can use DescribeCollection 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.
Table Definition
| Column Name | Column Data Type |
|---|---|
| collection_id Required Input Column The ID of the collection to describe. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| collection_arn The Amazon Resource Name (ARN) of the collection. | VARCHAR |
| creation_timestamp The number of milliseconds since the Unix epoch time until the creation of the collection. The Unix epoch time is 00:00:00 Coordinated Universal Time (UTC), Thursday, 1 January 1970. | TIMESTAMP_S |
| face_count The number of faces that are indexed into the collection. To index faces into a collection, use IndexFaces. | BIGINT |
| face_model_version The version of the face model that's used by the collection for face detection. For more information, see Model versioning in the Amazon Rekognition Developer Guide. | VARCHAR |
| user_count The number of UserIDs assigned to the specified colleciton. | BIGINT |