Class: Aws::States::Types::LambdaFunctionScheduledEventDetails
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::States::Types::LambdaFunctionScheduledEventDetails
 
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about a Lambda function scheduled during an execution.
Constant Summary collapse
- SENSITIVE =
- [:input] 
Instance Attribute Summary collapse
- 
  
    
      #input  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The JSON data input to the Lambda function. 
- 
  
    
      #input_details  ⇒ Types::HistoryEventExecutionDataDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains details about input for an execution history event. 
- 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Name (ARN) of the scheduled Lambda function. 
- 
  
    
      #task_credentials  ⇒ Types::TaskCredentials 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The credentials that Step Functions uses for the task. 
- 
  
    
      #timeout_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The maximum allowed duration of the Lambda function. 
Instance Attribute Details
#input ⇒ String
The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
| 2487 2488 2489 2490 2491 2492 2493 2494 2495 | # File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2487 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end | 
#input_details ⇒ Types::HistoryEventExecutionDataDetails
Contains details about input for an execution history event.
| 2487 2488 2489 2490 2491 2492 2493 2494 2495 | # File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2487 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end | 
#resource ⇒ String
The Amazon Resource Name (ARN) of the scheduled Lambda function.
| 2487 2488 2489 2490 2491 2492 2493 2494 2495 | # File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2487 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end | 
#task_credentials ⇒ Types::TaskCredentials
The credentials that Step Functions uses for the task.
| 2487 2488 2489 2490 2491 2492 2493 2494 2495 | # File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2487 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end | 
#timeout_in_seconds ⇒ Integer
The maximum allowed duration of the Lambda function.
| 2487 2488 2489 2490 2491 2492 2493 2494 2495 | # File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 2487 class LambdaFunctionScheduledEventDetails < Struct.new( :resource, :input, :input_details, :timeout_in_seconds, :task_credentials) SENSITIVE = [:input] include Aws::Structure end |