This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Waiter Lambda | |
This lambda waits indefinitely for an action, sleeping every n seconds | |
until it succeeds, fails or times out. | |
""" | |
import json | |
import os | |
import time | |
import boto3 |
OlderNewer