Class: Aws::Rekognition::Types::DescribeProjectsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DescribeProjectsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#features ⇒ Array<String>
Specifies the type of customization to filter projects by.
-
#max_results ⇒ Integer
The maximum number of results to return per paginated call.
-
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Rekognition returns a pagination token in the response.
-
#project_names ⇒ Array<String>
A list of the projects that you want Rekognition to describe.
Instance Attribute Details
#features ⇒ Array<String>
Specifies the type of customization to filter projects by. If no value is specified, CUSTOM_LABELS is used as a default.
1857 1858 1859 1860 1861 1862 1863 1864 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1857 class DescribeProjectsRequest < Struct.new( :next_token, :max_results, :project_names, :features) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.
1857 1858 1859 1860 1861 1862 1863 1864 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1857 class DescribeProjectsRequest < Struct.new( :next_token, :max_results, :project_names, :features) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the previous response was incomplete (because there is more results to retrieve), Rekognition returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
1857 1858 1859 1860 1861 1862 1863 1864 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1857 class DescribeProjectsRequest < Struct.new( :next_token, :max_results, :project_names, :features) SENSITIVE = [] include Aws::Structure end |
#project_names ⇒ Array<String>
A list of the projects that you want Rekognition to describe. If you don’t specify a value, the response includes descriptions for all the projects in your AWS account.
1857 1858 1859 1860 1861 1862 1863 1864 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1857 class DescribeProjectsRequest < Struct.new( :next_token, :max_results, :project_names, :features) SENSITIVE = [] include Aws::Structure end |