Class: Aws::Rekognition::Types::ListDatasetLabelsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ListDatasetLabelsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset that you want to use.
-
#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.
Instance Attribute Details
#dataset_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset that you want to use.
4993 4994 4995 4996 4997 4998 4999 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4993 class ListDatasetLabelsRequest < Struct.new( :dataset_arn, :next_token, :max_results) 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.
4993 4994 4995 4996 4997 4998 4999 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4993 class ListDatasetLabelsRequest < Struct.new( :dataset_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.
4993 4994 4995 4996 4997 4998 4999 |
# File 'lib/aws-sdk-rekognition/types.rb', line 4993 class ListDatasetLabelsRequest < Struct.new( :dataset_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |