Class: Aws::LexRuntimeV2::Types::HeartbeatEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexRuntimeV2::Types::HeartbeatEvent
- Defined in:
- gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb
Overview
Event that Amazon Lex V2 sends to indicate that the stream is still open between the client application and Amazon Lex V2
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.
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.
593 594 595 596 597 598 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 593 class HeartbeatEvent < Struct.new( :event_id, :event_type) SENSITIVE = [] include Aws::Structure end |
#event_type ⇒ Object
Returns the value of attribute event_type
593 594 595 |
# File 'gems/aws-sdk-lexruntimev2/lib/aws-sdk-lexruntimev2/types.rb', line 593 def event_type @event_type end |