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.
-
Bucket - The ARN of an Amazon S3 bucket.
-
Topic - The ARN of a standard SNS topic.
-
**Event Bus** - The ARN of an Amazon EventBridge event bus.
<note markdown=“1”> S3 buckets are supported only for on-failure destinations. To retain records of successful invocations, use another destination type.
</note>
2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-lambda/types.rb', line 2649 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.
2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-lambda/types.rb', line 2649 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.
2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-lambda/types.rb', line 2649 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.
2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-lambda/types.rb', line 2649 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.
2649 2650 2651 2652 2653 2654 2655 2656 2657 |
# File 'lib/aws-sdk-lambda/types.rb', line 2649 class FunctionEventInvokeConfig < Struct.new( :last_modified, :function_arn, :maximum_retry_attempts, :maximum_event_age_in_seconds, :destination_config) SENSITIVE = [] include Aws::Structure end |