Class: Aws::Rekognition::Types::CelebrityRecognition
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::CelebrityRecognition
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Information about a detected celebrity and the time the celebrity was detected in a stored video. For more information, see GetCelebrityRecognition in the Amazon Rekognition Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#celebrity ⇒ Types::CelebrityDetail
Information about a recognized celebrity.
-
#timestamp ⇒ Integer
The time, in milliseconds from the start of the video, that the celebrity was recognized.
Instance Attribute Details
#celebrity ⇒ Types::CelebrityDetail
Information about a recognized celebrity.
428 429 430 431 432 433 |
# File 'lib/aws-sdk-rekognition/types.rb', line 428 class CelebrityRecognition < Struct.new( :timestamp, :celebrity) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Integer
The time, in milliseconds from the start of the video, that the celebrity was recognized. Note that ‘Timestamp` is not guaranteed to be accurate to the individual frame where the celebrity first appears.
428 429 430 431 432 433 |
# File 'lib/aws-sdk-rekognition/types.rb', line 428 class CelebrityRecognition < Struct.new( :timestamp, :celebrity) SENSITIVE = [] include Aws::Structure end |