Class: Aws::Rekognition::Types::ListProjectPoliciesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ListProjectPoliciesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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), Amazon Rekognition Custom Labels returns a pagination token in the response.
-
#project_arn ⇒ String
The ARN of the project for which you want to list the project policies.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return per paginated call. The largest value you can specify is 5. If you specify a value greater than 5, a ValidationException error occurs. The default value is 5.
5128 5129 5130 5131 5132 5133 5134 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5128 class ListProjectPoliciesRequest < Struct.new( :project_arn, :next_token, :max_results) 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.
5128 5129 5130 5131 5132 5133 5134 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5128 class ListProjectPoliciesRequest < Struct.new( :project_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#project_arn ⇒ String
The ARN of the project for which you want to list the project policies.
5128 5129 5130 5131 5132 5133 5134 |
# File 'lib/aws-sdk-rekognition/types.rb', line 5128 class ListProjectPoliciesRequest < Struct.new( :project_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |