Get Celebrity Info
| rekognition_get_celebrity_info | R Documentation |
Gets the name and additional information about a celebrity based on their Amazon Rekognition ID¶
Description¶
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.
Usage¶
rekognition_get_celebrity_info(Id)
Arguments¶
Id |
[required] The ID for the celebrity. You get the celebrity ID
from a call to the |
Value¶
A list with the following syntax:
list(
Urls = list(
"string"
),
Name = "string",
KnownGender = list(
Type = "Male"|"Female"|"Nonbinary"|"Unlisted"
)
)
Request syntax¶
svc$get_celebrity_info(
Id = "string"
)