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/sagemaker/SageMaker_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace SageMaker
13 {
14 namespace Model
15 {
16   enum class EndpointStatus
17   {
18     NOT_SET,
19     OutOfService,
20     Creating,
21     Updating,
22     SystemUpdating,
23     RollingBack,
24     InService,
25     Deleting,
26     Failed
27   };
28 
29 namespace EndpointStatusMapper
30 {
31 AWS_SAGEMAKER_API EndpointStatus GetEndpointStatusForName(const Aws::String& name);
32 
33 AWS_SAGEMAKER_API Aws::String GetNameForEndpointStatus(EndpointStatus value);
34 } // namespace EndpointStatusMapper
35 } // namespace Model
36 } // namespace SageMaker
37 } // namespace Aws
38