Class: Aws::Lambda::Types::FunctionEventInvokeConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::FunctionEventInvokeConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #destination_config  ⇒ Types::DestinationConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A destination for events after they have been sent to a function for processing.
 - 
  
    
      #function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the function.
 - 
  
    
      #last_modified  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the configuration was last updated.
 - 
  
    
      #maximum_event_age_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum age of a request that Lambda sends to a function for processing.
 - 
  
    
      #maximum_retry_attempts  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of times to retry when the function returns an error.
 
Instance Attribute Details
#destination_config ⇒ Types::DestinationConfig
A destination for events after they have been sent to a function for processing.
Destinations
- 
Function - The Amazon Resource Name (ARN) of a Lambda function.
 - 
Queue - The ARN of a standard SQS queue.
 - 
Topic - The ARN of a standard SNS topic.
 - 
**Event Bus** - The ARN of an Amazon EventBridge event bus.
 
      2515 2516 2517 2518 2519 2520 2521 2522 2523  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2515 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end  | 
  
#function_arn ⇒ String
The Amazon Resource Name (ARN) of the function.
      2515 2516 2517 2518 2519 2520 2521 2522 2523  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2515 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end  | 
  
#last_modified ⇒ Time
The date and time that the configuration was last updated.
      2515 2516 2517 2518 2519 2520 2521 2522 2523  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2515 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end  | 
  
#maximum_event_age_in_seconds ⇒ Integer
The maximum age of a request that Lambda sends to a function for processing.
      2515 2516 2517 2518 2519 2520 2521 2522 2523  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2515 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end  | 
  
#maximum_retry_attempts ⇒ Integer
The maximum number of times to retry when the function returns an error.
      2515 2516 2517 2518 2519 2520 2521 2522 2523  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2515 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end  |