AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchDeleteUniqueIdRequest.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 <utility>
12
13namespace Aws
14{
15namespace EntityResolution
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_ENTITYRESOLUTION_API BatchDeleteUniqueIdRequest();
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 "BatchDeleteUniqueId"; }
32
33 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
34
35 AWS_ENTITYRESOLUTION_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
42 inline const Aws::String& GetInputSource() const{ return m_inputSource; }
43 inline bool InputSourceHasBeenSet() const { return m_inputSourceHasBeenSet; }
44 inline void SetInputSource(const Aws::String& value) { m_inputSourceHasBeenSet = true; m_inputSource = value; }
45 inline void SetInputSource(Aws::String&& value) { m_inputSourceHasBeenSet = true; m_inputSource = std::move(value); }
46 inline void SetInputSource(const char* value) { m_inputSourceHasBeenSet = true; m_inputSource.assign(value); }
47 inline BatchDeleteUniqueIdRequest& WithInputSource(const Aws::String& value) { SetInputSource(value); return *this;}
48 inline BatchDeleteUniqueIdRequest& WithInputSource(Aws::String&& value) { SetInputSource(std::move(value)); return *this;}
49 inline BatchDeleteUniqueIdRequest& WithInputSource(const char* value) { SetInputSource(value); return *this;}
51
53
56 inline const Aws::Vector<Aws::String>& GetUniqueIds() const{ return m_uniqueIds; }
57 inline bool UniqueIdsHasBeenSet() const { return m_uniqueIdsHasBeenSet; }
58 inline void SetUniqueIds(const Aws::Vector<Aws::String>& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds = value; }
59 inline void SetUniqueIds(Aws::Vector<Aws::String>&& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds = std::move(value); }
61 inline BatchDeleteUniqueIdRequest& WithUniqueIds(Aws::Vector<Aws::String>&& value) { SetUniqueIds(std::move(value)); return *this;}
62 inline BatchDeleteUniqueIdRequest& AddUniqueIds(const Aws::String& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds.push_back(value); return *this; }
63 inline BatchDeleteUniqueIdRequest& AddUniqueIds(Aws::String&& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds.push_back(std::move(value)); return *this; }
64 inline BatchDeleteUniqueIdRequest& AddUniqueIds(const char* value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds.push_back(value); return *this; }
66
68
71 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
72 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
73 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
74 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
75 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
76 inline BatchDeleteUniqueIdRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
77 inline BatchDeleteUniqueIdRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
78 inline BatchDeleteUniqueIdRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
80 private:
81
82 Aws::String m_inputSource;
83 bool m_inputSourceHasBeenSet = false;
84
85 Aws::Vector<Aws::String> m_uniqueIds;
86 bool m_uniqueIdsHasBeenSet = false;
87
88 Aws::String m_workflowName;
89 bool m_workflowNameHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace EntityResolution
94} // namespace Aws
BatchDeleteUniqueIdRequest & WithInputSource(const char *value)
BatchDeleteUniqueIdRequest & WithUniqueIds(const Aws::Vector< Aws::String > &value)
BatchDeleteUniqueIdRequest & WithUniqueIds(Aws::Vector< Aws::String > &&value)
BatchDeleteUniqueIdRequest & WithWorkflowName(Aws::String &&value)
BatchDeleteUniqueIdRequest & WithInputSource(Aws::String &&value)
BatchDeleteUniqueIdRequest & AddUniqueIds(const char *value)
BatchDeleteUniqueIdRequest & AddUniqueIds(Aws::String &&value)
BatchDeleteUniqueIdRequest & WithInputSource(const Aws::String &value)
AWS_ENTITYRESOLUTION_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
void SetUniqueIds(const Aws::Vector< Aws::String > &value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
BatchDeleteUniqueIdRequest & WithWorkflowName(const char *value)
BatchDeleteUniqueIdRequest & WithWorkflowName(const Aws::String &value)
BatchDeleteUniqueIdRequest & AddUniqueIds(const Aws::String &value)
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