Source code for models_v2.tear_down_status_2_enum

# -*- coding: utf-8 -*-

[docs]class TearDownStatus2Enum(object): """Implementation of the 'TearDownStatus2' enum. Specifies the tear down status. Attributes: DESTROYSCHEDULED: TODO: type description here. DESTROYING: TODO: type description here. DESTROYED: TODO: type description here. DESTROYERROR: TODO: type description here. """ DESTROYSCHEDULED = 'DestroyScheduled' DESTROYING = 'Destroying' DESTROYED = 'Destroyed' DESTROYERROR = 'DestroyError'