Class: Aws::Rekognition::Types::ListFacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ListFacesRequest
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#collection_id ⇒ String
ID of the collection from which to list the faces.
-
#max_results ⇒ Integer
Maximum number of faces to return.
-
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Rekognition returns a pagination token in the response.
Instance Attribute Details
#collection_id ⇒ String
ID of the collection from which to list the faces.
4075 4076 4077 4078 4079 4080 4081 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4075 class ListFacesRequest < Struct.new( :collection_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Maximum number of faces to return.
4075 4076 4077 4078 4079 4080 4081 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4075 class ListFacesRequest < Struct.new( :collection_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the previous response was incomplete (because there is more data to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of faces.
4075 4076 4077 4078 4079 4080 4081 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4075 class ListFacesRequest < Struct.new( :collection_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |