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/dynamodb/DynamoDB_EXPORTS.h> 8 #include <aws/core/utils/memory/stl/AWSString.h> 9 10 namespace Aws 11 { 12 namespace DynamoDB 13 { 14 namespace Model 15 { 16 enum class DestinationStatus 17 { 18 NOT_SET, 19 ENABLING, 20 ACTIVE, 21 DISABLING, 22 DISABLED, 23 ENABLE_FAILED 24 }; 25 26 namespace DestinationStatusMapper 27 { 28 AWS_DYNAMODB_API DestinationStatus GetDestinationStatusForName(const Aws::String& name); 29 30 AWS_DYNAMODB_API Aws::String GetNameForDestinationStatus(DestinationStatus value); 31 } // namespace DestinationStatusMapper 32 } // namespace Model 33 } // namespace DynamoDB 34 } // namespace Aws 35