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/opensearch/OpenSearchService_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 
10 namespace Aws
11 {
12 namespace OpenSearchService
13 {
14 namespace Model
15 {
16   enum class InboundConnectionStatusCode
17   {
18     NOT_SET,
19     PENDING_ACCEPTANCE,
20     APPROVED,
21     PROVISIONING,
22     ACTIVE,
23     REJECTING,
24     REJECTED,
25     DELETING,
26     DELETED
27   };
28 
29 namespace InboundConnectionStatusCodeMapper
30 {
31 AWS_OPENSEARCHSERVICE_API InboundConnectionStatusCode GetInboundConnectionStatusCodeForName(const Aws::String& name);
32 
33 AWS_OPENSEARCHSERVICE_API Aws::String GetNameForInboundConnectionStatusCode(InboundConnectionStatusCode value);
34 } // namespace InboundConnectionStatusCodeMapper
35 } // namespace Model
36 } // namespace OpenSearchService
37 } // namespace Aws
38