Skip to content Skip to sidebar Skip to footer

Can I Update Ssm Parameter Value From Aws Python Lambda

Using python in an aws lambda I want to retrieve a parameter from the ssm parameter store then modify it. So I can retrieve it easily like this ssm = boto3.client('ssm') parame

Solution 1:

Solved with the following code

if((parameter['Parameter']['Value']) == 'ONE_STRING'):
    ssm.put_parameter(
         Name='/my_test/test',
         Value='NEW_STRING',
         Type='String',
         Overwrite=True
       )

Post a Comment for "Can I Update Ssm Parameter Value From Aws Python Lambda"