This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-swf/include/aws/swf/model/StartTimerFailedCause.h

34 lines
770 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/swf/SWF_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace SWF
{
namespace Model
{
enum class StartTimerFailedCause
{
NOT_SET,
TIMER_ID_ALREADY_IN_USE,
OPEN_TIMERS_LIMIT_EXCEEDED,
TIMER_CREATION_RATE_EXCEEDED,
OPERATION_NOT_PERMITTED
};
namespace StartTimerFailedCauseMapper
{
AWS_SWF_API StartTimerFailedCause GetStartTimerFailedCauseForName(const Aws::String& name);
AWS_SWF_API Aws::String GetNameForStartTimerFailedCause(StartTimerFailedCause value);
} // namespace StartTimerFailedCauseMapper
} // namespace Model
} // namespace SWF
} // namespace Aws