Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion packages/core/src/stepFunctions/activation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,14 @@ async function registerStepFunctionCommands(
await publishStateMachine({ awsContext: awsContext, outputChannel: outputChannel, region: region })
}),
Commands.register('aws.stepfunctions.viewExecutionDetailsByExecutionARN', async () => {
await ExecutionDetailProvider.openExecutionDetails('')
const arn = await vscode.window.showInputBox({
prompt: 'Enter Execution ARN',
placeHolder: 'Execution ARN',
})

if (arn) {
await ExecutionDetailProvider.openExecutionDetails(arn)
}
})
)
}
Expand Down
Loading