Class: Aws::Rekognition::Types::ListDatasetEntriesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ListDatasetEntriesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_entries ⇒ Array<String>
A list of entries (images) in the dataset.
-
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response.
Instance Attribute Details
#dataset_entries ⇒ Array<String>
A list of entries (images) in the dataset.
4968 4969 4970 4971 4972 4973 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4968 class ListDatasetEntriesResponse < Struct.new( :dataset_entries, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
4968 4969 4970 4971 4972 4973 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4968 class ListDatasetEntriesResponse < Struct.new( :dataset_entries, :next_token) SENSITIVE = [] include Aws::Structure end |