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 AttributeType
17   {
18     NOT_SET,
19     INCLUSIVE,
20     EXCLUSIVE,
21     CONTAINS,
22     BEFORE,
23     AFTER,
24     ON,
25     BETWEEN
26   };
27 
28 namespace AttributeTypeMapper
29 {
30 AWS_PINPOINT_API AttributeType GetAttributeTypeForName(const Aws::String& name);
31 
32 AWS_PINPOINT_API Aws::String GetNameForAttributeType(AttributeType value);
33 } // namespace AttributeTypeMapper
34 } // namespace Model
35 } // namespace Pinpoint
36 } // namespace Aws
37