Class: Aws::Rekognition::Types::DescribeProjectVersionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DescribeProjectVersionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response.
-
#project_version_descriptions ⇒ Array<Types::ProjectVersionDescription>
A list of project version descriptions.
Instance Attribute Details
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
1825 1826 1827 1828 1829 1830 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1825 class DescribeProjectVersionsResponse < Struct.new( :project_version_descriptions, :next_token) SENSITIVE = [] include Aws::Structure end |
#project_version_descriptions ⇒ Array<Types::ProjectVersionDescription>
A list of project version descriptions. The list is sorted by the creation date and time of the project versions, latest to earliest.
1825 1826 1827 1828 1829 1830 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1825 class DescribeProjectVersionsResponse < Struct.new( :project_version_descriptions, :next_token) SENSITIVE = [] include Aws::Structure end |