This is the new CloudFormation Template Reference Guide. Please update your bookmarks and links. For help getting started with CloudFormation, see the AWS CloudFormation User Guide.
AWS::Lambda::DurableExecution
The AWS::Lambda::DurableExecution resource Property description not available. for Lambda.
Syntax
To declare this entity in your CloudFormation template, use the following syntax:
JSON
{ "Type" : "AWS::Lambda::DurableExecution", "Properties" : { "FunctionName" :String} }
YAML
Type: AWS::Lambda::DurableExecution Properties: FunctionName:String
Properties
FunctionNameProperty description not available.
Required: No
Type: String
Minimum:
1Maximum:
256Update requires: Replacement
Return values
Ref
Fn::GetAtt
DurableExecutionArn-
The Amazon Resource Name (ARN) of the durable execution.
DurableExecutionName-
The name of the durable execution. This is either the name you provided when invoking the function, or a system-generated unique identifier if no name was provided.
EndTimestamp-
The date and time when the durable execution ended, in Unix timestamp format. This field is only present if the execution has completed (status is
SUCCEEDED,FAILED,TIMED_OUT, orSTOPPED). FunctionArn-
The Amazon Resource Name (ARN) of the Lambda function that was invoked to start this durable execution.
StartTimestamp-
The date and time when the durable execution started, in Unix timestamp format.
Status-
The current status of the durable execution. Valid values are
RUNNING,SUCCEEDED,FAILED,TIMED_OUT, andSTOPPED. Version-
The version of the Lambda function that was invoked for this durable execution. This ensures that all replays during the execution use the same function version.