Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SSM パラメータ値にアクセスして変更および更新できるコードを開発しようとしています。
誰でも、boto3でこれをどのように達成できるか教えてもらえますか
次の方法で変更できます。
response = ssm.put_parameter( Name='field_name', Value='new_value', Type='Type', Overwrite=True )
次の方法で読み取りを実現できます
response = ssm.get_parameters( Names=[ 'feild_name', ] ) print(response['Parameters'][0]['Value'])