AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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() = default;
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& GetWorkflowName() const { return m_workflowName; }
43 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
44 template<typename WorkflowNameT = Aws::String>
45 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
46 template<typename WorkflowNameT = Aws::String>
47 BatchDeleteUniqueIdRequest& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
49
51
54 inline const Aws::String& GetInputSource() const { return m_inputSource; }
55 inline bool InputSourceHasBeenSet() const { return m_inputSourceHasBeenSet; }
56 template<typename InputSourceT = Aws::String>
57 void SetInputSource(InputSourceT&& value) { m_inputSourceHasBeenSet = true; m_inputSource = std::forward<InputSourceT>(value); }
58 template<typename InputSourceT = Aws::String>
59 BatchDeleteUniqueIdRequest& WithInputSource(InputSourceT&& value) { SetInputSource(std::forward<InputSourceT>(value)); return *this;}
61
63
66 inline const Aws::Vector<Aws::String>& GetUniqueIds() const { return m_uniqueIds; }
67 inline bool UniqueIdsHasBeenSet() const { return m_uniqueIdsHasBeenSet; }
68 template<typename UniqueIdsT = Aws::Vector<Aws::String>>
69 void SetUniqueIds(UniqueIdsT&& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds = std::forward<UniqueIdsT>(value); }
70 template<typename UniqueIdsT = Aws::Vector<Aws::String>>
71 BatchDeleteUniqueIdRequest& WithUniqueIds(UniqueIdsT&& value) { SetUniqueIds(std::forward<UniqueIdsT>(value)); return *this;}
72 template<typename UniqueIdsT = Aws::String>
73 BatchDeleteUniqueIdRequest& AddUniqueIds(UniqueIdsT&& value) { m_uniqueIdsHasBeenSet = true; m_uniqueIds.emplace_back(std::forward<UniqueIdsT>(value)); return *this; }
75 private:
76
77 Aws::String m_workflowName;
78 bool m_workflowNameHasBeenSet = false;
79
80 Aws::String m_inputSource;
81 bool m_inputSourceHasBeenSet = false;
82
83 Aws::Vector<Aws::String> m_uniqueIds;
84 bool m_uniqueIdsHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace EntityResolution
89} // 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