celebrity_infos
Creates, updates, deletes, gets or lists a celebrity_infos resource.
Overview
| Name | celebrity_infos |
| Type | Resource |
| Id | aws.rekognition.celebrity_infos |
Fields
The following fields are returned by SELECT queries:
- get_celebrity_info
| Name | Datatype | Description |
|---|---|---|
known_gender | object | Retrieves the known gender for the celebrity. |
name | string | The name of the celebrity. |
urls | array | An array of URLs pointing to additional celebrity information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_celebrity_info | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_celebrity_info
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
;