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

Provides the details of the LambdaFunctionStarted event. It * isn't set for other event types.

See Also:

AWS * API Reference

*/ class LambdaFunctionStartedEventAttributes { public: AWS_SWF_API LambdaFunctionStartedEventAttributes(); AWS_SWF_API LambdaFunctionStartedEventAttributes(Aws::Utils::Json::JsonView jsonValue); AWS_SWF_API LambdaFunctionStartedEventAttributes& 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 LambdaFunctionStartedEventAttributes& WithScheduledEventId(long long value) { SetScheduledEventId(value); return *this;} private: long long m_scheduledEventId; bool m_scheduledEventIdHasBeenSet = false; }; } // namespace Model } // namespace SWF } // namespace Aws