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)?

질문됨 8달 전269회 조회
2개 답변
2
수락된 답변

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

profile pictureAWS
전문가
Uri
답변함 8달 전
  • 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
전문가
답변함 8달 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠