Is the Version of a Step Function available from Step Function Context

0

The Context object available from a Step Function is described here, but there isn't a mention of Versions. If Versions are used is the executing Version visible in the Step Function Context object (either as a seperate field or as part of the StateMachine.Id)?

asked 7 months ago258 views
2 Answers
2
Accepted Answer

It seems it is not shown in the context object. I will raise it with the service team.

profile pictureAWS
EXPERT
Uri
answered 7 months ago
  • BTW, why do you need it?

    In the meantime, you can use DescribeExceution or GetExecutionHistory to get the information.

  • I'm looking at doing a consistency check between the version of the Step Function that's running and the version of the Lambdas it's executing, and if the Step Function included this in context as Lambda does then this would be a convenient and performant way to do it

1

Hi,

The way to obtain the version of a state machine is to use API DescribeStateMachine in the Step AWS SDK of your favorite language : https://docs.aws.amazon.com/step-functions/latest/apireference/API_DescribeStateMachine.html

It's called revisionId in the returned Json:

{
   "creationDate": number,
   "definition": "string",
   "description": "string",
   "label": "string",
   "loggingConfiguration": { 
      "destinations": [ 
         { 
            "cloudWatchLogsLogGroup": { 
               "logGroupArn": "string"
            }
         }
      ],
      "includeExecutionData": boolean,
      "level": "string"
   },
   "name": "string",
   "revisionId": "string",
   "roleArn": "string",
   "stateMachineArn": "string",
   "status": "string",
   "tracingConfiguration": { 
      "enabled": boolean
   },
   "type": "string"
}

Best,

Didier

profile pictureAWS
EXPERT
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions