| 検索(/Test/IAD/helloWorldのキーを検索する) | aws ssm describe-parameters --filters "Key=Name,Values=/Test/IAD/helloWorld" | 
| 追加 | aws ssm put-parameter --name "/Test/IAD/helloWorld" --value "My1stParameter" --type String | 
https://docs.aws.amazon.com/ja_jp/systems-manager/latest/userguide/sysman-paramstore-access.html
{
 "Version": "2012-10-17",
 "Statement": [
   {
     "Effect": "Allow",
     "Action": [
       "ssm:GetParameters"
     ],
     "Resource": [
       "arn:aws:ssm:<region>:<aws_account_id>:parameter/*"
     ]
   }
 ]
}
https://qiita.com/hayao_k/items/e34c706464d562d8b8f0
https://docs.aws.amazon.com/ja_jp/secretsmanager/latest/userguide/tutorials_basic.html
https://qiita.com/inductor/items/ac8f4a1a947f0d3bbaa6