AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.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();
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::Vector<IdMappingJobOutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
42 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
43 inline void SetOutputSourceConfig(const Aws::Vector<IdMappingJobOutputSource>& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = value; }
44 inline void SetOutputSourceConfig(Aws::Vector<IdMappingJobOutputSource>&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::move(value); }
47 inline StartIdMappingJobRequest& AddOutputSourceConfig(const IdMappingJobOutputSource& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(value); return *this; }
48 inline StartIdMappingJobRequest& AddOutputSourceConfig(IdMappingJobOutputSource&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(std::move(value)); return *this; }
50
52
55 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
56 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
57 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
58 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
59 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
60 inline StartIdMappingJobRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
61 inline StartIdMappingJobRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
62 inline StartIdMappingJobRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
64 private:
65
66 Aws::Vector<IdMappingJobOutputSource> m_outputSourceConfig;
67 bool m_outputSourceConfigHasBeenSet = false;
68
69 Aws::String m_workflowName;
70 bool m_workflowNameHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace EntityResolution
75} // namespace Aws
StartIdMappingJobRequest & WithWorkflowName(const Aws::String &value)
StartIdMappingJobRequest & WithWorkflowName(const char *value)
void SetOutputSourceConfig(const Aws::Vector< IdMappingJobOutputSource > &value)
StartIdMappingJobRequest & WithOutputSourceConfig(Aws::Vector< IdMappingJobOutputSource > &&value)
StartIdMappingJobRequest & AddOutputSourceConfig(const IdMappingJobOutputSource &value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
const Aws::Vector< IdMappingJobOutputSource > & GetOutputSourceConfig() const
StartIdMappingJobRequest & WithWorkflowName(Aws::String &&value)
StartIdMappingJobRequest & AddOutputSourceConfig(IdMappingJobOutputSource &&value)
void SetOutputSourceConfig(Aws::Vector< IdMappingJobOutputSource > &&value)
StartIdMappingJobRequest & WithOutputSourceConfig(const Aws::Vector< IdMappingJobOutputSource > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector