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/pinpoint/Pinpoint_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace Pinpoint
13 {
14 namespace Model
15 {
16   enum class State
17   {
18     NOT_SET,
19     DRAFT,
20     ACTIVE,
21     COMPLETED,
22     CANCELLED,
23     CLOSED,
24     PAUSED
25   };
26 
27 namespace StateMapper
28 {
29 AWS_PINPOINT_API State GetStateForName(const Aws::String& name);
30 
31 AWS_PINPOINT_API Aws::String GetNameForState(State value);
32 } // namespace StateMapper
33 } // namespace Model
34 } // namespace Pinpoint
35 } // namespace Aws
36