/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace OpsWorks { namespace Model { namespace CloudWatchLogsInitialPositionMapper { static const int start_of_file_HASH = HashingUtils::HashString("start_of_file"); static const int end_of_file_HASH = HashingUtils::HashString("end_of_file"); CloudWatchLogsInitialPosition GetCloudWatchLogsInitialPositionForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == start_of_file_HASH) { return CloudWatchLogsInitialPosition::start_of_file; } else if (hashCode == end_of_file_HASH) { return CloudWatchLogsInitialPosition::end_of_file; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return CloudWatchLogsInitialPosition::NOT_SET; } Aws::String GetNameForCloudWatchLogsInitialPosition(CloudWatchLogsInitialPosition enumValue) { switch(enumValue) { case CloudWatchLogsInitialPosition::start_of_file: return "start_of_file"; case CloudWatchLogsInitialPosition::end_of_file: return "end_of_file"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace CloudWatchLogsInitialPositionMapper } // namespace Model } // namespace OpsWorks } // namespace Aws