Class: Aws::LexModelsV2::Types::FulfillmentStartResponseSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::FulfillmentStartResponseSpecification
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelsv2/types.rb
Overview
Provides settings for a message that is sent to the user when a fulfillment Lambda function starts running.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allow_interrupt ⇒ Boolean
Determines whether the user can interrupt the start message while it is playing.
-
#delay_in_seconds ⇒ Integer
The delay between when the Lambda fulfillment function starts running and the start message is played.
-
#message_groups ⇒ Array<Types::MessageGroup>
1 - 5 message groups that contain start messages.
Instance Attribute Details
#allow_interrupt ⇒ Boolean
Determines whether the user can interrupt the start message while it is playing.
7598 7599 7600 7601 7602 7603 7604 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7598 class FulfillmentStartResponseSpecification < Struct.new( :delay_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |
#delay_in_seconds ⇒ Integer
The delay between when the Lambda fulfillment function starts running and the start message is played. If the Lambda function returns before the delay is over, the start message isn’t played.
7598 7599 7600 7601 7602 7603 7604 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7598 class FulfillmentStartResponseSpecification < Struct.new( :delay_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |
#message_groups ⇒ Array<Types::MessageGroup>
1 - 5 message groups that contain start messages. Amazon Lex chooses one of the messages to play to the user.
7598 7599 7600 7601 7602 7603 7604 |
# File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7598 class FulfillmentStartResponseSpecification < Struct.new( :delay_in_seconds, :message_groups, :allow_interrupt) SENSITIVE = [] include Aws::Structure end |