functions/source/bootstrap_redshift/bootstrap_redshift.py [71:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    decoded_value = ''
    try:
        binary_data = base64.b64decode(encrypted_value)
        meta = kms_client.decrypt(CiphertextBlob=binary_data)
        plain_text = meta[u'Plaintext']
        decoded_value = plain_text.decode()
    except Exception as ex:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



functions/source/bot_fulfillment/bot_fulfillment.py [86:92]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    decoded_value = ''
    try:
        binary_data = base64.b64decode(encrypted_value)
        meta = kms_client.decrypt(CiphertextBlob=binary_data)
        plain_text = meta[u'Plaintext']
        decoded_value = plain_text.decode()
    except Exception as ex:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



