Class: Aws::LexRuntimeV2::Types::TextInputEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexRuntimeV2::Types::TextInputEvent
- Defined in:
- gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb
Overview
The event sent from your client application to Amazon Lex V2 with text input from the user.
Constant Summary collapse
- SENSITIVE =
[:text]
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.
-
#text ⇒ String
The text from the user.
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.
1636 1637 1638 1639 1640 1641 1642 1643 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 1636 class TextInputEvent < Struct.new( :text, :event_id, :client_timestamp_millis, :event_type) SENSITIVE = [:text] 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.
1636 1637 1638 1639 1640 1641 1642 1643 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 1636 class TextInputEvent < Struct.new( :text, :event_id, :client_timestamp_millis, :event_type) SENSITIVE = [:text] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
1636 1637 1638 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 1636 def event_type @event_type end |
#text ⇒ String
The text from the user. Amazon Lex V2 processes this as a complete statement.
1636 1637 1638 1639 1640 1641 1642 1643 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 1636 class TextInputEvent < Struct.new( :text, :event_id, :client_timestamp_millis, :event_type) SENSITIVE = [:text] include Aws::Structure end |