/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SWF { namespace Model { /** *

Provides the details of the StartTimerFailed * event.

See Also:

AWS * API Reference

*/ class StartTimerFailedEventAttributes { public: AWS_SWF_API StartTimerFailedEventAttributes(); AWS_SWF_API StartTimerFailedEventAttributes(Aws::Utils::Json::JsonView jsonValue); AWS_SWF_API StartTimerFailedEventAttributes& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SWF_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The timerId provided in the StartTimer decision that failed.

*/ inline const Aws::String& GetTimerId() const{ return m_timerId; } /** *

The timerId provided in the StartTimer decision that failed.

*/ inline bool TimerIdHasBeenSet() const { return m_timerIdHasBeenSet; } /** *

The timerId provided in the StartTimer decision that failed.

*/ inline void SetTimerId(const Aws::String& value) { m_timerIdHasBeenSet = true; m_timerId = value; } /** *

The timerId provided in the StartTimer decision that failed.

*/ inline void SetTimerId(Aws::String&& value) { m_timerIdHasBeenSet = true; m_timerId = std::move(value); } /** *

The timerId provided in the StartTimer decision that failed.

*/ inline void SetTimerId(const char* value) { m_timerIdHasBeenSet = true; m_timerId.assign(value); } /** *

The timerId provided in the StartTimer decision that failed.

*/ inline StartTimerFailedEventAttributes& WithTimerId(const Aws::String& value) { SetTimerId(value); return *this;} /** *

The timerId provided in the StartTimer decision that failed.

*/ inline StartTimerFailedEventAttributes& WithTimerId(Aws::String&& value) { SetTimerId(std::move(value)); return *this;} /** *

The timerId provided in the StartTimer decision that failed.

*/ inline StartTimerFailedEventAttributes& WithTimerId(const char* value) { SetTimerId(value); return *this;} /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline const StartTimerFailedCause& GetCause() const{ return m_cause; } /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline bool CauseHasBeenSet() const { return m_causeHasBeenSet; } /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline void SetCause(const StartTimerFailedCause& value) { m_causeHasBeenSet = true; m_cause = value; } /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline void SetCause(StartTimerFailedCause&& value) { m_causeHasBeenSet = true; m_cause = std::move(value); } /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline StartTimerFailedEventAttributes& WithCause(const StartTimerFailedCause& value) { SetCause(value); return *this;} /** *

The cause of the failure. This information is generated by the system and can * be useful for diagnostic purposes.

If cause is set to * OPERATION_NOT_PERMITTED, the decision failed because it lacked * sufficient permissions. For details and example IAM policies, see Using * IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer * Guide.

*/ inline StartTimerFailedEventAttributes& WithCause(StartTimerFailedCause&& value) { SetCause(std::move(value)); return *this;} /** *

The ID of the DecisionTaskCompleted event corresponding to the * decision task that resulted in the StartTimer decision for this * activity task. This information can be useful for diagnosing problems by tracing * back the chain of events leading up to this event.

*/ inline long long GetDecisionTaskCompletedEventId() const{ return m_decisionTaskCompletedEventId; } /** *

The ID of the DecisionTaskCompleted event corresponding to the * decision task that resulted in the StartTimer decision for this * activity task. This information can be useful for diagnosing problems by tracing * back the chain of events leading up to this event.

*/ inline bool DecisionTaskCompletedEventIdHasBeenSet() const { return m_decisionTaskCompletedEventIdHasBeenSet; } /** *

The ID of the DecisionTaskCompleted event corresponding to the * decision task that resulted in the StartTimer decision for this * activity task. This information can be useful for diagnosing problems by tracing * back the chain of events leading up to this event.

*/ inline void SetDecisionTaskCompletedEventId(long long value) { m_decisionTaskCompletedEventIdHasBeenSet = true; m_decisionTaskCompletedEventId = value; } /** *

The ID of the DecisionTaskCompleted event corresponding to the * decision task that resulted in the StartTimer decision for this * activity task. This information can be useful for diagnosing problems by tracing * back the chain of events leading up to this event.

*/ inline StartTimerFailedEventAttributes& WithDecisionTaskCompletedEventId(long long value) { SetDecisionTaskCompletedEventId(value); return *this;} private: Aws::String m_timerId; bool m_timerIdHasBeenSet = false; StartTimerFailedCause m_cause; bool m_causeHasBeenSet = false; long long m_decisionTaskCompletedEventId; bool m_decisionTaskCompletedEventIdHasBeenSet = false; }; } // namespace Model } // namespace SWF } // namespace Aws