/** * 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 details of the LambdaFunctionTimedOut * event.

See Also:

AWS * API Reference

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

The ID of the LambdaFunctionScheduled event that was recorded * when this activity task was scheduled. To help diagnose issues, use this * information to trace back the chain of events leading up to this event.

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

The ID of the LambdaFunctionScheduled event that was recorded * when this activity task was scheduled. To help diagnose issues, use this * information to trace back the chain of events leading up to this event.

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

The ID of the LambdaFunctionScheduled event that was recorded * when this activity task was scheduled. To help diagnose issues, use this * information to trace 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 LambdaFunctionScheduled event that was recorded * when this activity task was scheduled. To help diagnose issues, use this * information to trace back the chain of events leading up to this event.

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

The ID of the ActivityTaskStarted event that was recorded when * this activity task started. To help diagnose issues, use this information to * trace back the chain of events leading up to this event.

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

The ID of the ActivityTaskStarted event that was recorded when * this activity task started. To help diagnose issues, use this information to * trace back the chain of events leading up to this event.

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

The ID of the ActivityTaskStarted event that was recorded when * this activity task started. To help diagnose issues, use this information to * trace 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 ActivityTaskStarted event that was recorded when * this activity task started. To help diagnose issues, use this information to * trace back the chain of events leading up to this event.

*/ inline LambdaFunctionTimedOutEventAttributes& WithStartedEventId(long long value) { SetStartedEventId(value); return *this;} /** *

The type of the timeout that caused this event.

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

The type of the timeout that caused this event.

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

The type of the timeout that caused this event.

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

The type of the timeout that caused this event.

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

The type of the timeout that caused this event.

*/ inline LambdaFunctionTimedOutEventAttributes& WithTimeoutType(const LambdaFunctionTimeoutType& value) { SetTimeoutType(value); return *this;} /** *

The type of the timeout that caused this event.

*/ inline LambdaFunctionTimedOutEventAttributes& WithTimeoutType(LambdaFunctionTimeoutType&& value) { SetTimeoutType(std::move(value)); return *this;} private: long long m_scheduledEventId; bool m_scheduledEventIdHasBeenSet = false; long long m_startedEventId; bool m_startedEventIdHasBeenSet = false; LambdaFunctionTimeoutType m_timeoutType; bool m_timeoutTypeHasBeenSet = false; }; } // namespace Model } // namespace SWF } // namespace Aws