/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #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 DecisionTaskTimedOut * event.

See Also:

AWS * API Reference

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

The type of timeout that expired before the decision task could be * completed.

*/ inline const DecisionTaskTimeoutType& GetTimeoutType() const{ return m_timeoutType; } /** *

The type of timeout that expired before the decision task could be * completed.

*/ inline bool TimeoutTypeHasBeenSet() const { return m_timeoutTypeHasBeenSet; } /** *

The type of timeout that expired before the decision task could be * completed.

*/ inline void SetTimeoutType(const DecisionTaskTimeoutType& value) { m_timeoutTypeHasBeenSet = true; m_timeoutType = value; } /** *

The type of timeout that expired before the decision task could be * completed.

*/ inline void SetTimeoutType(DecisionTaskTimeoutType&& value) { m_timeoutTypeHasBeenSet = true; m_timeoutType = std::move(value); } /** *

The type of timeout that expired before the decision task could be * completed.

*/ inline DecisionTaskTimedOutEventAttributes& WithTimeoutType(const DecisionTaskTimeoutType& value) { SetTimeoutType(value); return *this;} /** *

The type of timeout that expired before the decision task could be * completed.

*/ inline DecisionTaskTimedOutEventAttributes& WithTimeoutType(DecisionTaskTimeoutType&& value) { SetTimeoutType(std::move(value)); return *this;} /** *

The ID of the DecisionTaskScheduled event that was recorded when * this decision task was scheduled. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline long long GetScheduledEventId() const{ return m_scheduledEventId; } /** *

The ID of the DecisionTaskScheduled event that was recorded when * this decision task was scheduled. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline bool ScheduledEventIdHasBeenSet() const { return m_scheduledEventIdHasBeenSet; } /** *

The ID of the DecisionTaskScheduled event that was recorded when * this decision task was scheduled. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline void SetScheduledEventId(long long value) { m_scheduledEventIdHasBeenSet = true; m_scheduledEventId = value; } /** *

The ID of the DecisionTaskScheduled event that was recorded when * this decision task was scheduled. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline DecisionTaskTimedOutEventAttributes& WithScheduledEventId(long long value) { SetScheduledEventId(value); return *this;} /** *

The ID of the DecisionTaskStarted event recorded when this * decision task was started. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline long long GetStartedEventId() const{ return m_startedEventId; } /** *

The ID of the DecisionTaskStarted event recorded when this * decision task was started. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline bool StartedEventIdHasBeenSet() const { return m_startedEventIdHasBeenSet; } /** *

The ID of the DecisionTaskStarted event recorded when this * decision task was started. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline void SetStartedEventId(long long value) { m_startedEventIdHasBeenSet = true; m_startedEventId = value; } /** *

The ID of the DecisionTaskStarted event recorded when this * decision task was started. This information can be useful for diagnosing * problems by tracing back the chain of events leading up to this event.

*/ inline DecisionTaskTimedOutEventAttributes& WithStartedEventId(long long value) { SetStartedEventId(value); return *this;} private: DecisionTaskTimeoutType m_timeoutType; bool m_timeoutTypeHasBeenSet = false; long long m_scheduledEventId; bool m_scheduledEventIdHasBeenSet = false; long long m_startedEventId; bool m_startedEventIdHasBeenSet = false; }; } // namespace Model } // namespace SWF } // namespace Aws