Skip to main content

celebrity_infos

Creates, updates, deletes, gets or lists a celebrity_infos resource.

Overview

Namecelebrity_infos
TypeResource
Idaws.rekognition.celebrity_infos

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
known_genderobjectRetrieves the known gender for the celebrity.
namestringThe name of the celebrity.
urlsarrayAn array of URLs pointing to additional celebrity information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_celebrity_infoselectregionGets the name and additional information about a celebrity based on their Amazon Rekognition ID. The additional information is returned as an array of URLs. If there is no additional information about the celebrity, this list is empty. For more information, see Getting information about a celebrity in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:GetCelebrityInfo action.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the name and additional information about a celebrity based on their Amazon Rekognition ID. The additional information is returned as an array of URLs. If there is no additional information about the celebrity, this list is empty. For more information, see Getting information about a celebrity in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:GetCelebrityInfo action.

SELECT
known_gender,
name,
urls
FROM aws.rekognition.celebrity_infos
WHERE region = '{{ region }}' -- required
;