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/elasticfilesystem/EFS_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace EFS
13 {
14 namespace Model
15 {
16   enum class LifeCycleState
17   {
18     NOT_SET,
19     creating,
20     available,
21     updating,
22     deleting,
23     deleted,
24     error
25   };
26 
27 namespace LifeCycleStateMapper
28 {
29 AWS_EFS_API LifeCycleState GetLifeCycleStateForName(const Aws::String& name);
30 
31 AWS_EFS_API Aws::String GetNameForLifeCycleState(LifeCycleState value);
32 } // namespace LifeCycleStateMapper
33 } // namespace Model
34 } // namespace EFS
35 } // namespace Aws
36