1 Answer
- Newest
- Most votes
- Most comments
1
Hi,
you have to use the overwrite option of the Put Parameter API of SSM to do an update. Example with CLI:
ssm put-parameter --name "test123" --type "String" --value "MyValue" --overwrite
See reference doc: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ssm/put-parameter.html
You will also find this option with any language SDK published by AWS as it is delivered by the service endpont API: https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PutParameter.html
Best,
Didier
