from enum import Enum class EnvironmentNameEnum(Enum): production = 'production' staging = 'staging' testing = 'testing' development = 'development'