DestinationConfig — AWS SDK for Ruby V3 (original) (raw)
Class: Aws::Lambda::Types::DestinationConfig
Inherits:
Struct
- Object
- Struct
- Aws::Lambda::Types::DestinationConfig show all
Defined in:
gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
A configuration object that specifies the destination of an event after Lambda processes it. For more information, see Adding a destination.
Constant Summarycollapse
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.
1607 1608 1609 1610 1611 1612 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1607 class DestinationConfig < Struct.new( :on_success, :on_failure) SENSITIVE = [] include Aws::Structure end |
---|
#on_success ⇒ Types::OnSuccess
The destination configuration for successful invocations. Not supported in CreateEventSourceMapping
orUpdateEventSourceMapping
.
1607 1608 1609 1610 1611 1612 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1607 class DestinationConfig < Struct.new( :on_success, :on_failure) SENSITIVE = [] include Aws::Structure end |
---|