76 lines
2.5 KiB
C++
76 lines
2.5 KiB
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>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SWF
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Provides the details of the <code>LambdaFunctionStarted</code> event. It
|
|
* isn't set for other event types.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/swf-2012-01-25/LambdaFunctionStartedEventAttributes">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_SWF_API LambdaFunctionStartedEventAttributes
|
|
{
|
|
public:
|
|
LambdaFunctionStartedEventAttributes();
|
|
LambdaFunctionStartedEventAttributes(Aws::Utils::Json::JsonView jsonValue);
|
|
LambdaFunctionStartedEventAttributes& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the <code>LambdaFunctionScheduled</code> 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.</p>
|
|
*/
|
|
inline long long GetScheduledEventId() const{ return m_scheduledEventId; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>LambdaFunctionScheduled</code> 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.</p>
|
|
*/
|
|
inline bool ScheduledEventIdHasBeenSet() const { return m_scheduledEventIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>LambdaFunctionScheduled</code> 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.</p>
|
|
*/
|
|
inline void SetScheduledEventId(long long value) { m_scheduledEventIdHasBeenSet = true; m_scheduledEventId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the <code>LambdaFunctionScheduled</code> 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.</p>
|
|
*/
|
|
inline LambdaFunctionStartedEventAttributes& WithScheduledEventId(long long value) { SetScheduledEventId(value); return *this;}
|
|
|
|
private:
|
|
|
|
long long m_scheduledEventId;
|
|
bool m_scheduledEventIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SWF
|
|
} // namespace Aws
|