Class: Aws::LexModelsV2::Types::ListTestSetRecordsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::ListTestSetRecordsResponse
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token that indicates whether there are more records to return in a response to the ListTestSetRecords operation.
-
#test_set_records ⇒ Array<Types::TestSetTurnRecord>
The list of records from the test set.
Instance Attribute Details
#next_token ⇒ String
A token that indicates whether there are more records to return in a response to the ListTestSetRecords operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListTestSetRecords operation request to get the next page of records.
10785 10786 10787 10788 10789 10790 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 10785 class ListTestSetRecordsResponse < Struct.new( :test_set_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#test_set_records ⇒ Array<Types::TestSetTurnRecord>
The list of records from the test set.
10785 10786 10787 10788 10789 10790 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 10785 class ListTestSetRecordsResponse < Struct.new( :test_set_records, :next_token) SENSITIVE = [] include Aws::Structure end |