Method: Aws::LexModelsV2::Types::DescribeTestExecutionResponse#api_mode
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
#api_mode ⇒ String
Indicates whether we use streaming or non-streaming APIs are used for the test set execution. For streaming, StartConversation Amazon Lex Runtime API is used. Whereas for non-streaming, RecognizeUtterance and RecognizeText Amazon Lex Runtime API is used.
7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7086 class DescribeTestExecutionResponse < Struct.new( :test_execution_id, :creation_date_time, :last_updated_date_time, :test_execution_status, :test_set_id, :test_set_name, :target, :api_mode, :test_execution_modality, :failure_reasons) SENSITIVE = [] include Aws::Structure end |