Bases: Resource
Configure options for asynchronous invocation on a version or an alias.
By default, Lambda retries an asynchronous invocation twice if the function returns an error. It retains events in a queue for up to six hours. When an event fails all processing attempts or stays in the asynchronous invocation queue for too long, Lambda discards it.
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_lambda as lambda_ import aws_cdk.core as cdk # destination: lambda.IDestination # function_: lambda.Function event_invoke_config = lambda_.EventInvokeConfig(self, "MyEventInvokeConfig", function=function_, # the properties below are optional max_event_age=cdk.Duration.minutes(30), on_failure=destination, on_success=destination, qualifier="qualifier", retry_attempts=123 )
scope (Construct
)
id (str
)
function (IFunction
) â The Lambda function.
qualifier (Optional
[str
]) â The qualifier. Default: - latest version
max_event_age (Optional
[Duration
]) â The maximum age of a request that Lambda sends to a function for processing. Minimum: 60 seconds Maximum: 6 hours Default: Duration.hours(6)
on_failure (Optional
[IDestination
]) â The destination for failed invocations. Default: - no destination
on_success (Optional
[IDestination
]) â The destination for successful invocations. Default: - no destination
retry_attempts (Union
[int
, float
, None
]) â The maximum number of times to retry when the function returns an error. Minimum: 0 Maximum: 2 Default: 2
Methods
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because youâve removed it from the CDK application or because youâve made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).
policy (RemovalPolicy
)
None
Returns a string representation of this construct.
str
Attributes
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
The construct tree node associated with this construct.
The stack in which this resource is defined.
Static Methods
Return whether the given object is a Construct.
x (Any
)
bool
Check whether the given construct is a Resource.
construct (IConstruct
)
bool
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4