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/appsync/AppSync_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace AppSync
13 {
14 namespace Model
15 {
16   enum class ApiCacheType
17   {
18     NOT_SET,
19     T2_SMALL,
20     T2_MEDIUM,
21     R4_LARGE,
22     R4_XLARGE,
23     R4_2XLARGE,
24     R4_4XLARGE,
25     R4_8XLARGE,
26     SMALL,
27     MEDIUM,
28     LARGE,
29     XLARGE,
30     LARGE_2X,
31     LARGE_4X,
32     LARGE_8X,
33     LARGE_12X
34   };
35 
36 namespace ApiCacheTypeMapper
37 {
38 AWS_APPSYNC_API ApiCacheType GetApiCacheTypeForName(const Aws::String& name);
39 
40 AWS_APPSYNC_API Aws::String GetNameForApiCacheType(ApiCacheType value);
41 } // namespace ApiCacheTypeMapper
42 } // namespace Model
43 } // namespace AppSync
44 } // namespace Aws
45