With aws cli I can successfully create parameter in AWS Paramater Store and retrieve it using get-parameters.
Example:
anarinsky:~> aws ssm put-parameter \
--name /IAD/ERP/Oracle/addUsers \
--value "Milana,Mariana,Mark,Miguel" \
--type StringList --region us-east-1
anarinsky:~> aws ssm get-parameters \
--name "/IAD/ERP/Oracle/addUsers" \
--region us-east-1
{"Parameters": [{ "Name": "/IAD/ERP/Oracle/addUsers","Type": "StringList","Value": "Milana,Mariana,Mark,Miguel" } ], "InvalidParameters": []
}
How to retrieve the same parameter using aws ssm get-parameters-by-path?
To retrieve by path the command is
aws ssm get-parameters-by-path --path "/IAD/ERP/Oracle/" --region us-east-1