Class: Aws::LexModelsV2::Types::FulfillmentUpdateResponseSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::FulfillmentUpdateResponseSpecification
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Provides settings for a message that is sent periodically to the user while a fulfillment Lambda function is running.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_interrupt ⇒ Boolean
Determines whether the user can interrupt an update message while it is playing.
-
#frequency_in_seconds ⇒ Integer
The frequency that a message is sent to the user.
-
#message_groups ⇒ Array<Types::MessageGroup>
1 - 5 message groups that contain update messages.
Instance Attribute Details
#allow_interrupt ⇒ Boolean
Determines whether the user can interrupt an update message while it is playing.
7628 7629 7630 7631 7632 7633 7634 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7628 class FulfillmentUpdateResponseSpecification < Struct.new( :frequency_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |
#frequency_in_seconds ⇒ Integer
The frequency that a message is sent to the user. When the period ends, Amazon Lex chooses a message from the message groups and plays it to the user. If the fulfillment Lambda returns before the first period ends, an update message is not played to the user.
7628 7629 7630 7631 7632 7633 7634 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7628 class FulfillmentUpdateResponseSpecification < Struct.new( :frequency_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |
#message_groups ⇒ Array<Types::MessageGroup>
1 - 5 message groups that contain update messages. Amazon Lex chooses one of the messages to play to the user.
7628 7629 7630 7631 7632 7633 7634 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 7628 class FulfillmentUpdateResponseSpecification < Struct.new( :frequency_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |