Class: Aws::LexRuntimeV2::Types::PlaybackCompletionEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexRuntimeV2::Types::PlaybackCompletionEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexruntimev2/types.rb
Overview
Event sent from the client application to Amazon Lex V2 to indicate that playback of audio is complete and that Amazon Lex V2 should start processing the user’s input.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_timestamp_millis ⇒ Integer
A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.
-
#event_id ⇒ String
A unique identifier that your application assigns to the event.
-
#event_type ⇒ Object
Returns the value of attribute event_type.
Instance Attribute Details
#client_timestamp_millis ⇒ Integer
A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.
840 841 842 843 844 845 846 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 840 class PlaybackCompletionEvent < Struct.new( :event_id, :client_timestamp_millis, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_id ⇒ String
A unique identifier that your application assigns to the event. You can use this to identify events in logs.
840 841 842 843 844 845 846 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 840 class PlaybackCompletionEvent < Struct.new( :event_id, :client_timestamp_millis, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
840 841 842 |
# File 'lib/aws-sdk-lexruntimev2/types.rb', line 840 def event_type @event_type end |