AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
GetIdMappingJobRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/entityresolution/EntityResolutionRequest.h>
9#include <aws/entityresolution/EntityResolution_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace EntityResolution {
15namespace Model {
16
20 public:
21 AWS_ENTITYRESOLUTION_API GetIdMappingJobRequest() = 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 "GetIdMappingJob"; }
28
29 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
36 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
37 template <typename WorkflowNameT = Aws::String>
38 void SetWorkflowName(WorkflowNameT&& value) {
39 m_workflowNameHasBeenSet = true;
40 m_workflowName = std::forward<WorkflowNameT>(value);
41 }
42 template <typename WorkflowNameT = Aws::String>
43 GetIdMappingJobRequest& WithWorkflowName(WorkflowNameT&& value) {
44 SetWorkflowName(std::forward<WorkflowNameT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetJobId() const { return m_jobId; }
54 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
55 template <typename JobIdT = Aws::String>
56 void SetJobId(JobIdT&& value) {
57 m_jobIdHasBeenSet = true;
58 m_jobId = std::forward<JobIdT>(value);
59 }
60 template <typename JobIdT = Aws::String>
62 SetJobId(std::forward<JobIdT>(value));
63 return *this;
64 }
66 private:
67 Aws::String m_workflowName;
68
69 Aws::String m_jobId;
70 bool m_workflowNameHasBeenSet = false;
71 bool m_jobIdHasBeenSet = false;
72};
73
74} // namespace Model
75} // namespace EntityResolution
76} // namespace Aws
AWS_ENTITYRESOLUTION_API GetIdMappingJobRequest()=default
GetIdMappingJobRequest & WithJobId(JobIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
GetIdMappingJobRequest & WithWorkflowName(WorkflowNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String