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/outposts/Outposts_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace Outposts
13 {
14 namespace Model
15 {
16   enum class OrderStatus
17   {
18     NOT_SET,
19     RECEIVED,
20     PENDING,
21     PROCESSING,
22     INSTALLING,
23     FULFILLED,
24     CANCELLED
25   };
26 
27 namespace OrderStatusMapper
28 {
29 AWS_OUTPOSTS_API OrderStatus GetOrderStatusForName(const Aws::String& name);
30 
31 AWS_OUTPOSTS_API Aws::String GetNameForOrderStatus(OrderStatus value);
32 } // namespace OrderStatusMapper
33 } // namespace Model
34 } // namespace Outposts
35 } // namespace Aws
36