AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeWorkflowExecutionRequest.h
1
6#pragma once
7#include <aws/swf/SWF_EXPORTS.h>
8#include <aws/swf/SWFRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/swf/model/WorkflowExecution.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SWF
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeWorkflowExecution"; }
32
33 AWS_SWF_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetDomain() const{ return m_domain; }
43 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
44 inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
45 inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
46 inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
47 inline DescribeWorkflowExecutionRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
48 inline DescribeWorkflowExecutionRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
49 inline DescribeWorkflowExecutionRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
51
53
56 inline const WorkflowExecution& GetExecution() const{ return m_execution; }
57 inline bool ExecutionHasBeenSet() const { return m_executionHasBeenSet; }
58 inline void SetExecution(const WorkflowExecution& value) { m_executionHasBeenSet = true; m_execution = value; }
59 inline void SetExecution(WorkflowExecution&& value) { m_executionHasBeenSet = true; m_execution = std::move(value); }
61 inline DescribeWorkflowExecutionRequest& WithExecution(WorkflowExecution&& value) { SetExecution(std::move(value)); return *this;}
63 private:
64
65 Aws::String m_domain;
66 bool m_domainHasBeenSet = false;
67
68 WorkflowExecution m_execution;
69 bool m_executionHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace SWF
74} // namespace Aws
AWS_SWF_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeWorkflowExecutionRequest & WithDomain(Aws::String &&value)
DescribeWorkflowExecutionRequest & WithExecution(WorkflowExecution &&value)
DescribeWorkflowExecutionRequest & WithExecution(const WorkflowExecution &value)
DescribeWorkflowExecutionRequest & WithDomain(const Aws::String &value)
DescribeWorkflowExecutionRequest & WithDomain(const char *value)
AWS_SWF_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String