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')
parameter = ssm.get_parameter(Name='/my_test/test', WithDecryption=True)
How can I use the client to update the string value of this parameter?
if((parameter['Parameter']['Value']) == 'ONE_STRING'):
// can i update the parameter value here?