Class: Aws::LexRuntimeV2::Types::TranscriptEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexRuntimeV2::Types::TranscriptEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexruntimev2/types.rb
Overview
Event sent from Amazon Lex V2 to your client application that contains a transcript of voice audio.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_id ⇒ String
A unique identifier of the event sent by Amazon Lex V2.
-
#event_type ⇒ Object
Returns the value of attribute event_type.
-
#transcript ⇒ String
The transcript of the voice audio from the user.
Instance Attribute Details
#event_id ⇒ String
A unique identifier of the event sent by Amazon Lex V2. The identifier is in the form ‘RESPONSE-N`, where N is a number starting with one and incremented for each event sent by Amazon Lex V2 in the current session.
1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 1701 class TranscriptEvent < Struct.new( :transcript, :event_id, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
1701 1702 1703 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 1701 def event_type @event_type end |
#transcript ⇒ String
The transcript of the voice audio from the user.
1701 1702 1703 1704 1705 1706 1707 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 1701 class TranscriptEvent < Struct.new( :transcript, :event_id, :event_type) SENSITIVE = [] include Aws::Structure end |