Class: Aws::Rekognition::Types::Celebrity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Celebrity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Provides information about a celebrity recognized by the RecognizeCelebrities operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face ⇒ Types::ComparedFace
Provides information about the celebrity’s face, such as its location on the image.
-
#id ⇒ String
A unique identifier for the celebrity.
-
#known_gender ⇒ Types::KnownGender
The known gender identity for the celebrity that matches the provided ID.
-
#match_confidence ⇒ Float
The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.
-
#name ⇒ String
The name of the celebrity.
-
#urls ⇒ Array<String>
An array of URLs pointing to additional information about the celebrity.
Instance Attribute Details
#face ⇒ Types::ComparedFace
Provides information about the celebrity’s face, such as its location on the image.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique identifier for the celebrity.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |
#known_gender ⇒ Types::KnownGender
The known gender identity for the celebrity that matches the provided ID. The known gender identity can be Male, Female, Nonbinary, or Unlisted.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |
#match_confidence ⇒ Float
The confidence, in percentage, that Amazon Rekognition has that the recognized face is the celebrity.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the celebrity.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |
#urls ⇒ Array<String>
An array of URLs pointing to additional information about the celebrity. If there is no additional information about the celebrity, this list is empty.
359 360 361 362 363 364 365 366 367 368 |
# File 'lib/aws-sdk-rekognition/types.rb', line 359 class Celebrity < Struct.new( :urls, :name, :id, :face, :match_confidence, :known_gender) SENSITIVE = [] include Aws::Structure end |