AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateIdMappingTableRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/CleanRoomsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CleanRooms
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_CLEANROOMS_API UpdateIdMappingTableRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "UpdateIdMappingTable"; }
31
32 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetIdMappingTableIdentifier() const{ return m_idMappingTableIdentifier; }
40 inline bool IdMappingTableIdentifierHasBeenSet() const { return m_idMappingTableIdentifierHasBeenSet; }
41 inline void SetIdMappingTableIdentifier(const Aws::String& value) { m_idMappingTableIdentifierHasBeenSet = true; m_idMappingTableIdentifier = value; }
42 inline void SetIdMappingTableIdentifier(Aws::String&& value) { m_idMappingTableIdentifierHasBeenSet = true; m_idMappingTableIdentifier = std::move(value); }
43 inline void SetIdMappingTableIdentifier(const char* value) { m_idMappingTableIdentifierHasBeenSet = true; m_idMappingTableIdentifier.assign(value); }
48
50
54 inline const Aws::String& GetMembershipIdentifier() const{ return m_membershipIdentifier; }
55 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
56 inline void SetMembershipIdentifier(const Aws::String& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = value; }
57 inline void SetMembershipIdentifier(Aws::String&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::move(value); }
58 inline void SetMembershipIdentifier(const char* value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier.assign(value); }
61 inline UpdateIdMappingTableRequest& WithMembershipIdentifier(const char* value) { SetMembershipIdentifier(value); return *this;}
63
65
68 inline const Aws::String& GetDescription() const{ return m_description; }
69 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
70 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
71 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
72 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
73 inline UpdateIdMappingTableRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
74 inline UpdateIdMappingTableRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
75 inline UpdateIdMappingTableRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
77
79
82 inline const Aws::String& GetKmsKeyArn() const{ return m_kmsKeyArn; }
83 inline bool KmsKeyArnHasBeenSet() const { return m_kmsKeyArnHasBeenSet; }
84 inline void SetKmsKeyArn(const Aws::String& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = value; }
85 inline void SetKmsKeyArn(Aws::String&& value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn = std::move(value); }
86 inline void SetKmsKeyArn(const char* value) { m_kmsKeyArnHasBeenSet = true; m_kmsKeyArn.assign(value); }
87 inline UpdateIdMappingTableRequest& WithKmsKeyArn(const Aws::String& value) { SetKmsKeyArn(value); return *this;}
88 inline UpdateIdMappingTableRequest& WithKmsKeyArn(Aws::String&& value) { SetKmsKeyArn(std::move(value)); return *this;}
89 inline UpdateIdMappingTableRequest& WithKmsKeyArn(const char* value) { SetKmsKeyArn(value); return *this;}
91 private:
92
93 Aws::String m_idMappingTableIdentifier;
94 bool m_idMappingTableIdentifierHasBeenSet = false;
95
96 Aws::String m_membershipIdentifier;
97 bool m_membershipIdentifierHasBeenSet = false;
98
99 Aws::String m_description;
100 bool m_descriptionHasBeenSet = false;
101
102 Aws::String m_kmsKeyArn;
103 bool m_kmsKeyArnHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace CleanRooms
108} // namespace Aws
UpdateIdMappingTableRequest & WithIdMappingTableIdentifier(const char *value)
UpdateIdMappingTableRequest & WithMembershipIdentifier(const Aws::String &value)
UpdateIdMappingTableRequest & WithDescription(Aws::String &&value)
UpdateIdMappingTableRequest & WithKmsKeyArn(const char *value)
UpdateIdMappingTableRequest & WithIdMappingTableIdentifier(const Aws::String &value)
UpdateIdMappingTableRequest & WithIdMappingTableIdentifier(Aws::String &&value)
UpdateIdMappingTableRequest & WithMembershipIdentifier(const char *value)
UpdateIdMappingTableRequest & WithKmsKeyArn(Aws::String &&value)
UpdateIdMappingTableRequest & WithKmsKeyArn(const Aws::String &value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
UpdateIdMappingTableRequest & WithDescription(const Aws::String &value)
UpdateIdMappingTableRequest & WithDescription(const char *value)
UpdateIdMappingTableRequest & WithMembershipIdentifier(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String