from enum import Enum # The method to use to verify the success of a deployment. # * HEALTH_CHECK: Wait for a task to be marked as HEALTHY # * EXIT_CODE: Wait for a task to stop and verify that the primary container # exited with a successful exit code. # * TASK_RUNNING: Wait for the task to be running. Do no additional checks. # * OFF: Do not verify the success of the deployment. VerifyMode = Enum('VerifyMode', ['HEALTH_CHECK', 'EXIT_CODE', 'TASK_RUNNING', 'OFF'])