Class: Aws::Lambda::Types::DestinationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DestinationConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass DestinationConfig data as a hash:
{
on_success: {
destination: "DestinationArn",
},
on_failure: {
destination: "DestinationArn",
},
}
A configuration object that specifies the destination of an event after Lambda processes it.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#on_failure ⇒ Types::OnFailure
The destination configuration for failed invocations.
-
#on_success ⇒ Types::OnSuccess
The destination configuration for successful invocations.
Instance Attribute Details
#on_failure ⇒ Types::OnFailure
The destination configuration for failed invocations.
1684 1685 1686 1687 1688 1689 |
# File 'lib/aws-sdk-lambda/types.rb', line 1684 class DestinationConfig < Struct.new( :on_success, :on_failure) SENSITIVE = [] include Aws::Structure end |
#on_success ⇒ Types::OnSuccess
The destination configuration for successful invocations.
1684 1685 1686 1687 1688 1689 |
# File 'lib/aws-sdk-lambda/types.rb', line 1684 class DestinationConfig < Struct.new( :on_success, :on_failure) SENSITIVE = [] include Aws::Structure end |