AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
BatchDeleteUniqueIdRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/entityresolution/EntityResolutionRequest.h>
10#include <aws/entityresolution/EntityResolution_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace EntityResolution {
16namespace Model {
17
21 public:
22 AWS_ENTITYRESOLUTION_API BatchDeleteUniqueIdRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "BatchDeleteUniqueId"; }
29
30 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
31
32 AWS_ENTITYRESOLUTION_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
33
35
38 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
39 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
40 template <typename WorkflowNameT = Aws::String>
41 void SetWorkflowName(WorkflowNameT&& value) {
42 m_workflowNameHasBeenSet = true;
43 m_workflowName = std::forward<WorkflowNameT>(value);
44 }
45 template <typename WorkflowNameT = Aws::String>
47 SetWorkflowName(std::forward<WorkflowNameT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetInputSource() const { return m_inputSource; }
57 inline bool InputSourceHasBeenSet() const { return m_inputSourceHasBeenSet; }
58 template <typename InputSourceT = Aws::String>
59 void SetInputSource(InputSourceT&& value) {
60 m_inputSourceHasBeenSet = true;
61 m_inputSource = std::forward<InputSourceT>(value);
62 }
63 template <typename InputSourceT = Aws::String>
65 SetInputSource(std::forward<InputSourceT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::Vector<Aws::String>& GetUniqueIds() const { return m_uniqueIds; }
75 inline bool UniqueIdsHasBeenSet() const { return m_uniqueIdsHasBeenSet; }
76 template <typename UniqueIdsT = Aws::Vector<Aws::String>>
77 void SetUniqueIds(UniqueIdsT&& value) {
78 m_uniqueIdsHasBeenSet = true;
79 m_uniqueIds = std::forward<UniqueIdsT>(value);
80 }
81 template <typename UniqueIdsT = Aws::Vector<Aws::String>>
83 SetUniqueIds(std::forward<UniqueIdsT>(value));
84 return *this;
85 }
86 template <typename UniqueIdsT = Aws::String>
88 m_uniqueIdsHasBeenSet = true;
89 m_uniqueIds.emplace_back(std::forward<UniqueIdsT>(value));
90 return *this;
91 }
93 private:
94 Aws::String m_workflowName;
95
96 Aws::String m_inputSource;
97
98 Aws::Vector<Aws::String> m_uniqueIds;
99 bool m_workflowNameHasBeenSet = false;
100 bool m_inputSourceHasBeenSet = false;
101 bool m_uniqueIdsHasBeenSet = false;
102};
103
104} // namespace Model
105} // namespace EntityResolution
106} // namespace Aws
BatchDeleteUniqueIdRequest & WithInputSource(InputSourceT &&value)
AWS_ENTITYRESOLUTION_API BatchDeleteUniqueIdRequest()=default
BatchDeleteUniqueIdRequest & AddUniqueIds(UniqueIdsT &&value)
BatchDeleteUniqueIdRequest & WithWorkflowName(WorkflowNameT &&value)
BatchDeleteUniqueIdRequest & WithUniqueIds(UniqueIdsT &&value)
AWS_ENTITYRESOLUTION_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_ENTITYRESOLUTION_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
std::vector< T, Aws::Allocator< T > > Vector