AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
ExecutionStartedDetails.h
1
6#pragma once
7#include <aws/lambda/Lambda_EXPORTS.h>
8#include <aws/lambda/model/EventInput.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Lambda {
20namespace Model {
21
28 public:
29 AWS_LAMBDA_API ExecutionStartedDetails() = default;
32 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const EventInput& GetInput() const { return m_input; }
39 inline bool InputHasBeenSet() const { return m_inputHasBeenSet; }
40 template <typename InputT = EventInput>
41 void SetInput(InputT&& value) {
42 m_inputHasBeenSet = true;
43 m_input = std::forward<InputT>(value);
44 }
45 template <typename InputT = EventInput>
47 SetInput(std::forward<InputT>(value));
48 return *this;
49 }
51
53
57 inline int GetExecutionTimeout() const { return m_executionTimeout; }
58 inline bool ExecutionTimeoutHasBeenSet() const { return m_executionTimeoutHasBeenSet; }
59 inline void SetExecutionTimeout(int value) {
60 m_executionTimeoutHasBeenSet = true;
61 m_executionTimeout = value;
62 }
65 return *this;
66 }
68 private:
69 EventInput m_input;
70
71 int m_executionTimeout{0};
72 bool m_inputHasBeenSet = false;
73 bool m_executionTimeoutHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace Lambda
78} // namespace Aws
ExecutionStartedDetails & WithExecutionTimeout(int value)
AWS_LAMBDA_API ExecutionStartedDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LAMBDA_API ExecutionStartedDetails()=default
AWS_LAMBDA_API ExecutionStartedDetails(Aws::Utils::Json::JsonView jsonValue)
ExecutionStartedDetails & WithInput(InputT &&value)
Aws::Utils::Json::JsonValue JsonValue