AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
PopulateIdMappingTableRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRoomsRequest.h>
8#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
9#include <aws/cleanrooms/model/JobType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace CleanRooms {
16namespace Model {
17
21 public:
22 AWS_CLEANROOMS_API PopulateIdMappingTableRequest() = 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 "PopulateIdMappingTable"; }
29
30 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
31
33
36 inline const Aws::String& GetIdMappingTableIdentifier() const { return m_idMappingTableIdentifier; }
37 inline bool IdMappingTableIdentifierHasBeenSet() const { return m_idMappingTableIdentifierHasBeenSet; }
38 template <typename IdMappingTableIdentifierT = Aws::String>
39 void SetIdMappingTableIdentifier(IdMappingTableIdentifierT&& value) {
40 m_idMappingTableIdentifierHasBeenSet = true;
41 m_idMappingTableIdentifier = std::forward<IdMappingTableIdentifierT>(value);
42 }
43 template <typename IdMappingTableIdentifierT = Aws::String>
44 PopulateIdMappingTableRequest& WithIdMappingTableIdentifier(IdMappingTableIdentifierT&& value) {
45 SetIdMappingTableIdentifier(std::forward<IdMappingTableIdentifierT>(value));
46 return *this;
47 }
49
51
55 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
56 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
57 template <typename MembershipIdentifierT = Aws::String>
58 void SetMembershipIdentifier(MembershipIdentifierT&& value) {
59 m_membershipIdentifierHasBeenSet = true;
60 m_membershipIdentifier = std::forward<MembershipIdentifierT>(value);
61 }
62 template <typename MembershipIdentifierT = Aws::String>
64 SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value));
65 return *this;
66 }
68
70
85 inline JobType GetJobType() const { return m_jobType; }
86 inline bool JobTypeHasBeenSet() const { return m_jobTypeHasBeenSet; }
87 inline void SetJobType(JobType value) {
88 m_jobTypeHasBeenSet = true;
89 m_jobType = value;
90 }
92 SetJobType(value);
93 return *this;
94 }
96 private:
97 Aws::String m_idMappingTableIdentifier;
98 bool m_idMappingTableIdentifierHasBeenSet = false;
99
100 Aws::String m_membershipIdentifier;
101 bool m_membershipIdentifierHasBeenSet = false;
102
103 JobType m_jobType{JobType::NOT_SET};
104 bool m_jobTypeHasBeenSet = false;
105};
106
107} // namespace Model
108} // namespace CleanRooms
109} // namespace Aws
PopulateIdMappingTableRequest & WithJobType(JobType value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
AWS_CLEANROOMS_API PopulateIdMappingTableRequest()=default
PopulateIdMappingTableRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
PopulateIdMappingTableRequest & WithIdMappingTableIdentifier(IdMappingTableIdentifierT &&value)
void SetIdMappingTableIdentifier(IdMappingTableIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String