AWS SDK for C++

AWS SDK for C++ Version 1.11.746

Loading...
Searching...
No Matches
SignalWorkflowExecutionRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/swf/SWFRequest.h>
9#include <aws/swf/SWF_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SWF {
15namespace Model {
16
20 public:
21 AWS_SWF_API SignalWorkflowExecutionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "SignalWorkflowExecution"; }
28
29 AWS_SWF_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetDomain() const { return m_domain; }
38 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
39 template <typename DomainT = Aws::String>
40 void SetDomain(DomainT&& value) {
41 m_domainHasBeenSet = true;
42 m_domain = std::forward<DomainT>(value);
43 }
44 template <typename DomainT = Aws::String>
46 SetDomain(std::forward<DomainT>(value));
47 return *this;
48 }
50
52
55 inline const Aws::String& GetWorkflowId() const { return m_workflowId; }
56 inline bool WorkflowIdHasBeenSet() const { return m_workflowIdHasBeenSet; }
57 template <typename WorkflowIdT = Aws::String>
58 void SetWorkflowId(WorkflowIdT&& value) {
59 m_workflowIdHasBeenSet = true;
60 m_workflowId = std::forward<WorkflowIdT>(value);
61 }
62 template <typename WorkflowIdT = Aws::String>
64 SetWorkflowId(std::forward<WorkflowIdT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetRunId() const { return m_runId; }
74 inline bool RunIdHasBeenSet() const { return m_runIdHasBeenSet; }
75 template <typename RunIdT = Aws::String>
76 void SetRunId(RunIdT&& value) {
77 m_runIdHasBeenSet = true;
78 m_runId = std::forward<RunIdT>(value);
79 }
80 template <typename RunIdT = Aws::String>
82 SetRunId(std::forward<RunIdT>(value));
83 return *this;
84 }
86
88
92 inline const Aws::String& GetSignalName() const { return m_signalName; }
93 inline bool SignalNameHasBeenSet() const { return m_signalNameHasBeenSet; }
94 template <typename SignalNameT = Aws::String>
95 void SetSignalName(SignalNameT&& value) {
96 m_signalNameHasBeenSet = true;
97 m_signalName = std::forward<SignalNameT>(value);
98 }
99 template <typename SignalNameT = Aws::String>
101 SetSignalName(std::forward<SignalNameT>(value));
102 return *this;
103 }
105
107
111 inline const Aws::String& GetInput() const { return m_input; }
112 inline bool InputHasBeenSet() const { return m_inputHasBeenSet; }
113 template <typename InputT = Aws::String>
114 void SetInput(InputT&& value) {
115 m_inputHasBeenSet = true;
116 m_input = std::forward<InputT>(value);
117 }
118 template <typename InputT = Aws::String>
120 SetInput(std::forward<InputT>(value));
121 return *this;
122 }
124 private:
125 Aws::String m_domain;
126
127 Aws::String m_workflowId;
128
129 Aws::String m_runId;
130
131 Aws::String m_signalName;
132
133 Aws::String m_input;
134 bool m_domainHasBeenSet = false;
135 bool m_workflowIdHasBeenSet = false;
136 bool m_runIdHasBeenSet = false;
137 bool m_signalNameHasBeenSet = false;
138 bool m_inputHasBeenSet = false;
139};
140
141} // namespace Model
142} // namespace SWF
143} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_SWF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SWF_API Aws::String SerializePayload() const override
SignalWorkflowExecutionRequest & WithDomain(DomainT &&value)
SignalWorkflowExecutionRequest & WithRunId(RunIdT &&value)
SignalWorkflowExecutionRequest & WithWorkflowId(WorkflowIdT &&value)
SignalWorkflowExecutionRequest & WithInput(InputT &&value)
SignalWorkflowExecutionRequest & WithSignalName(SignalNameT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String