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
).
4098 4099 4100 4101 4102 4103 4104 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4098 class ListFacesResponse < Struct.new( :faces, :next_token, :face_model_version) SENSITIVE = [] include Aws::Structure end |
#faces ⇒ Array<Types::Face>
An array of Face
objects.
4098 4099 4100 4101 4102 4103 4104 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4098 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.
4098 4099 4100 4101 4102 4103 4104 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4098 class ListFacesResponse < Struct.new( :faces, :next_token, :face_model_version) SENSITIVE = [] include Aws::Structure end |