Class: Aws::LexModelsV2::Types::ListTestSetRecordsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ListTestSetRecordsRequest
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of test set records to return in each page.
-
#next_token ⇒ String
If the response from the ListTestSetRecords operation contains more results than specified in the maxResults parameter, a token is returned in the response.
-
#test_set_id ⇒ String
The identifier of the test set to list its test set records.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of test set records to return in each page. If there are fewer records than the max page size, only the actual number of records are returned.
10820 10821 10822 10823 10824 10825 10826 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 10820 class ListTestSetRecordsRequest < Struct.new( :test_set_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response from the ListTestSetRecords operation contains more results than specified in the maxResults parameter, a token is returned in the response. Use that token in the nextToken parameter to return the next page of results.
10820 10821 10822 10823 10824 10825 10826 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 10820 class ListTestSetRecordsRequest < Struct.new( :test_set_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#test_set_id ⇒ String
The identifier of the test set to list its test set records.
10820 10821 10822 10823 10824 10825 10826 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 10820 class ListTestSetRecordsRequest < Struct.new( :test_set_id, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |