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/license-manager/LicenseManager_EXPORTS.h> 8 #include <aws/core/utils/memory/stl/AWSString.h> 9 10 namespace Aws 11 { 12 namespace LicenseManager 13 { 14 namespace Model 15 { 16 enum class ReceivedStatus 17 { 18 NOT_SET, 19 PENDING_WORKFLOW, 20 PENDING_ACCEPT, 21 REJECTED, 22 ACTIVE, 23 FAILED_WORKFLOW, 24 DELETED, 25 DISABLED, 26 WORKFLOW_COMPLETED 27 }; 28 29 namespace ReceivedStatusMapper 30 { 31 AWS_LICENSEMANAGER_API ReceivedStatus GetReceivedStatusForName(const Aws::String& name); 32 33 AWS_LICENSEMANAGER_API Aws::String GetNameForReceivedStatus(ReceivedStatus value); 34 } // namespace ReceivedStatusMapper 35 } // namespace Model 36 } // namespace LicenseManager 37 } // namespace Aws 38