<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Node on despatches</title><link>https://icle.es/tags/node/</link><description>Recent content in Node on despatches</description><generator>Hugo</generator><language>en</language><lastBuildDate>Fri, 20 Jun 2025 09:25:00 +0100</lastBuildDate><atom:link href="https://icle.es/tags/node/index.xml" rel="self" type="application/rss+xml"/><item><title>How do you access a specific version of a parameter from AWS Systems Manager Parameter Store</title><link>https://icle.es/2020/04/08/how-do-you-access-a-specific-version-of-a-parameter-from-aws-systems-manager-parameter-store/</link><pubDate>Wed, 08 Apr 2020 15:53:50 +0000</pubDate><guid>https://icle.es/2020/04/08/how-do-you-access-a-specific-version-of-a-parameter-from-aws-systems-manager-parameter-store/</guid><description>&lt;p>This was a bit tricky to find and doesn't seem to be well documented.&lt;/p>
```js
// version number below can be a number, i.e. 3 or a label
let params = {
 Name: "/path/to/parameter:&lt;version-number>",
 WithDecryption: false,
};

ssm.getParameter(params, function (err, data) {
 if (err) console.error(err, err.stack);
 else console.log(data);
});
```</description><content:encoded>&lt;p>This was a bit tricky to find and doesn't seem to be well documented.&lt;/p>
```js
// version number below can be a number, i.e. 3 or a label
let params = {
  Name: "/path/to/parameter:&lt;version-number>",
  WithDecryption: false,
};

ssm.getParameter(params, function (err, data) {
  if (err) console.error(err, err.stack);
  else console.log(data);
});
```
</content:encoded></item></channel></rss>