AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
StartIdMappingJobRequest.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/entityresolution/EntityResolutionRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/entityresolution/model/IdMappingJobOutputSource.h>
12#include <utility>
13
14namespace Aws
15{
16namespace EntityResolution
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_ENTITYRESOLUTION_API StartIdMappingJobRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "StartIdMappingJob"; }
33
34 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
42 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
43 template<typename WorkflowNameT = Aws::String>
44 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
45 template<typename WorkflowNameT = Aws::String>
46 StartIdMappingJobRequest& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
48
50
53 inline const Aws::Vector<IdMappingJobOutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
54 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
55 template<typename OutputSourceConfigT = Aws::Vector<IdMappingJobOutputSource>>
56 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
57 template<typename OutputSourceConfigT = Aws::Vector<IdMappingJobOutputSource>>
58 StartIdMappingJobRequest& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
59 template<typename OutputSourceConfigT = IdMappingJobOutputSource>
60 StartIdMappingJobRequest& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
62 private:
63
64 Aws::String m_workflowName;
65 bool m_workflowNameHasBeenSet = false;
66
67 Aws::Vector<IdMappingJobOutputSource> m_outputSourceConfig;
68 bool m_outputSourceConfigHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace EntityResolution
73} // namespace Aws
StartIdMappingJobRequest & AddOutputSourceConfig(OutputSourceConfigT &&value)
StartIdMappingJobRequest & WithOutputSourceConfig(OutputSourceConfigT &&value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
const Aws::Vector< IdMappingJobOutputSource > & GetOutputSourceConfig() const
AWS_ENTITYRESOLUTION_API StartIdMappingJobRequest()=default
StartIdMappingJobRequest & WithWorkflowName(WorkflowNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector