Class: Aws::Rekognition::Types::DescribeProjectVersionsResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Rekognition::Types::DescribeProjectVersionsResponse
 
- Defined in:
- gems/aws-sdk-rekognition/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.
| 1869 1870 1871 1872 1873 1874 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1869 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.
| 1869 1870 1871 1872 1873 1874 | # File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 1869 class DescribeProjectVersionsResponse < Struct.new( :project_version_descriptions, :next_token) SENSITIVE = [] include Aws::Structure end |