Class: Aws::Rekognition::Types::ListFacesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ListFacesResponse
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#face_model_version ⇒ String
Version number of the face detection model associated with the input collection (
CollectionId
). -
#faces ⇒ Array<Types::Face>
An array of
Face
objects. -
#next_token ⇒ String
If the response is truncated, Amazon Rekognition returns this token that you can use in the subsequent request to retrieve the next set of faces.
Instance Attribute Details
#face_model_version ⇒ String
Version number of the face detection model associated with the input
collection (CollectionId
).
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3446 class ListFacesResponse < Struct.new( :faces, :next_token, :face_model_version) SENSITIVE = [] include Aws::Structure end |
#faces ⇒ Array<Types::Face>
An array of Face
objects.
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3446 class ListFacesResponse < Struct.new( :faces, :next_token, :face_model_version) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response is truncated, Amazon Rekognition returns this token that you can use in the subsequent request to retrieve the next set of faces.
3446 3447 3448 3449 3450 3451 3452 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3446 class ListFacesResponse < Struct.new( :faces, :next_token, :face_model_version) SENSITIVE = [] include Aws::Structure end |