Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.06 KB

File metadata and controls

50 lines (37 loc) · 1.06 KB

stepfunctions-describe-execution-task

Describes an AWS step-function execution

AWS Permissions Required

  • states:DescribeExecution

Handler Method

function.handler

Request Syntax

{
    "ExecutionArn": "arn",
}
executionArn
The Amazon Resource Name (ARN) of the execution to describe - REQUIRED

Response syntax

{
    'executionArn': 'string',
    'stateMachineArn': 'string',
    'name': 'string',
    'status': 'RUNNING'|'SUCCEEDED'|'FAILED'|'TIMED_OUT'|'ABORTED',
    'startDate': 'iso8601 date/time',
    'stopDate': 'iso8601 date/time',
    'input': 'string',
    'output': 'string'
}

Lambda Package Location

https://s3.amazonaws.com/lambdalambdalambda-repo/quinovas/stepfunctions-describe-execution-task/stepfunctions-describe-execution-task-0.0.1.zip

License: APL2