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/gamelift/GameLift_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace GameLift
13 {
14 namespace Model
15 {
16   enum class FleetStatus
17   {
18     NOT_SET,
19     NEW_,
20     DOWNLOADING,
21     VALIDATING,
22     BUILDING,
23     ACTIVATING,
24     ACTIVE,
25     DELETING,
26     ERROR_,
27     TERMINATED
28   };
29 
30 namespace FleetStatusMapper
31 {
32 AWS_GAMELIFT_API FleetStatus GetFleetStatusForName(const Aws::String& name);
33 
34 AWS_GAMELIFT_API Aws::String GetNameForFleetStatus(FleetStatus value);
35 } // namespace FleetStatusMapper
36 } // namespace Model
37 } // namespace GameLift
38 } // namespace Aws
39