1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/rekognition/Rekognition_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace Rekognition
13 {
14 namespace Model
15 {
16   enum class ProjectVersionStatus
17   {
18     NOT_SET,
19     TRAINING_IN_PROGRESS,
20     TRAINING_COMPLETED,
21     TRAINING_FAILED,
22     STARTING,
23     RUNNING,
24     FAILED,
25     STOPPING,
26     STOPPED,
27     DELETING
28   };
29 
30 namespace ProjectVersionStatusMapper
31 {
32 AWS_REKOGNITION_API ProjectVersionStatus GetProjectVersionStatusForName(const Aws::String& name);
33 
34 AWS_REKOGNITION_API Aws::String GetNameForProjectVersionStatus(ProjectVersionStatus value);
35 } // namespace ProjectVersionStatusMapper
36 } // namespace Model
37 } // namespace Rekognition
38 } // namespace Aws
39