Class: Aws::LexModelsV2::Types::FulfillmentUpdatesSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::LexModelsV2::Types::FulfillmentUpdatesSpecification
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lexmodelsv2/types.rb
 
Overview
Provides information for updating the user on the progress of fulfilling an intent.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #active  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Determines whether fulfillment updates are sent to the user.
 - 
  
    
      #start_response  ⇒ Types::FulfillmentStartResponseSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.
 - 
  
    
      #timeout_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The length of time that the fulfillment Lambda function should run before it times out.
 - 
  
    
      #update_response  ⇒ Types::FulfillmentUpdateResponseSpecification 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.
 
Instance Attribute Details
#active ⇒ Boolean
Determines whether fulfillment updates are sent to the user. When this field is true, updates are sent.
If the ‘active` field is set to true, the `startResponse`, `updateResponse`, and `timeoutInSeconds` fields are required.
      7664 7665 7666 7667 7668 7669 7670 7671  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7664 class FulfillmentUpdatesSpecification < Struct.new( :active, :start_response, :update_response, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end  | 
  
#start_response ⇒ Types::FulfillmentStartResponseSpecification
Provides configuration information for the message sent to users when the fulfillment Lambda functions starts running.
      7664 7665 7666 7667 7668 7669 7670 7671  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7664 class FulfillmentUpdatesSpecification < Struct.new( :active, :start_response, :update_response, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end  | 
  
#timeout_in_seconds ⇒ Integer
The length of time that the fulfillment Lambda function should run before it times out.
      7664 7665 7666 7667 7668 7669 7670 7671  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7664 class FulfillmentUpdatesSpecification < Struct.new( :active, :start_response, :update_response, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end  | 
  
#update_response ⇒ Types::FulfillmentUpdateResponseSpecification
Provides configuration information for messages sent periodically to the user while the fulfillment Lambda function is running.
      7664 7665 7666 7667 7668 7669 7670 7671  | 
    
      # File 'lib/aws-sdk-lexmodelsv2/types.rb', line 7664 class FulfillmentUpdatesSpecification < Struct.new( :active, :start_response, :update_response, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end  |