xxxxxxxxxx
# Be aware there might be throttling
# This goes through all your parameters in your parameter store.
# outputs in Json
for params in $(aws ssm describe-parameters)
do
echo $params
done
# you can also replace
# the code in brackets with: aws ssm describe-parameters --query 'Parameters[].Name'
# this will only output the parameter names in a list
xxxxxxxxxx
aws ssm get-parameter \
--name "MySecureStringParameter" \
--with-decryption
--query 'Parameter.Value'
--output text
xxxxxxxxxx
aws ssm get-parameter
--name <value>
[--with-decryption | --no-with-decryption]
[--cli-input-json <value>]
[--generate-cli-skeleton <value>]