AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateConfiguredTableAssociationRequest.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 <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CleanRooms
16{
17namespace Model
18{
19
23 {
24 public:
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 "CreateConfiguredTableAssociation"; }
32
33 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetName() const{ return m_name; }
42 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
43 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
44 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
45 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
46 inline CreateConfiguredTableAssociationRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
47 inline CreateConfiguredTableAssociationRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
48 inline CreateConfiguredTableAssociationRequest& WithName(const char* value) { SetName(value); return *this;}
50
52
55 inline const Aws::String& GetDescription() const{ return m_description; }
56 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
57 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
58 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
59 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
61 inline CreateConfiguredTableAssociationRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
62 inline CreateConfiguredTableAssociationRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
64
66
71 inline const Aws::String& GetMembershipIdentifier() const{ return m_membershipIdentifier; }
72 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
73 inline void SetMembershipIdentifier(const Aws::String& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = value; }
74 inline void SetMembershipIdentifier(Aws::String&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::move(value); }
75 inline void SetMembershipIdentifier(const char* value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier.assign(value); }
80
82
86 inline const Aws::String& GetConfiguredTableIdentifier() const{ return m_configuredTableIdentifier; }
87 inline bool ConfiguredTableIdentifierHasBeenSet() const { return m_configuredTableIdentifierHasBeenSet; }
88 inline void SetConfiguredTableIdentifier(const Aws::String& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = value; }
89 inline void SetConfiguredTableIdentifier(Aws::String&& value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier = std::move(value); }
90 inline void SetConfiguredTableIdentifier(const char* value) { m_configuredTableIdentifierHasBeenSet = true; m_configuredTableIdentifier.assign(value); }
95
97
101 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
102 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
103 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
104 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
105 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
106 inline CreateConfiguredTableAssociationRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
107 inline CreateConfiguredTableAssociationRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
108 inline CreateConfiguredTableAssociationRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
110
112
118 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
119 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
120 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
121 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
124 inline CreateConfiguredTableAssociationRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
125 inline CreateConfiguredTableAssociationRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
126 inline CreateConfiguredTableAssociationRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
127 inline CreateConfiguredTableAssociationRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
128 inline CreateConfiguredTableAssociationRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
129 inline CreateConfiguredTableAssociationRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
130 inline CreateConfiguredTableAssociationRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
132 private:
133
134 Aws::String m_name;
135 bool m_nameHasBeenSet = false;
136
137 Aws::String m_description;
138 bool m_descriptionHasBeenSet = false;
139
140 Aws::String m_membershipIdentifier;
141 bool m_membershipIdentifierHasBeenSet = false;
142
143 Aws::String m_configuredTableIdentifier;
144 bool m_configuredTableIdentifierHasBeenSet = false;
145
146 Aws::String m_roleArn;
147 bool m_roleArnHasBeenSet = false;
148
150 bool m_tagsHasBeenSet = false;
151 };
152
153} // namespace Model
154} // namespace CleanRooms
155} // namespace Aws
CreateConfiguredTableAssociationRequest & WithConfiguredTableIdentifier(const Aws::String &value)
CreateConfiguredTableAssociationRequest & AddTags(Aws::String &&key, const char *value)
CreateConfiguredTableAssociationRequest & AddTags(const char *key, const char *value)
CreateConfiguredTableAssociationRequest & WithName(const Aws::String &value)
CreateConfiguredTableAssociationRequest & WithDescription(const char *value)
CreateConfiguredTableAssociationRequest & WithDescription(Aws::String &&value)
CreateConfiguredTableAssociationRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateConfiguredTableAssociationRequest & WithMembershipIdentifier(const Aws::String &value)
CreateConfiguredTableAssociationRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateConfiguredTableAssociationRequest & WithRoleArn(const Aws::String &value)
CreateConfiguredTableAssociationRequest & AddTags(Aws::String &&key, const Aws::String &value)
CreateConfiguredTableAssociationRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
CreateConfiguredTableAssociationRequest & WithConfiguredTableIdentifier(const char *value)
CreateConfiguredTableAssociationRequest & WithName(const char *value)
CreateConfiguredTableAssociationRequest & WithName(Aws::String &&value)
CreateConfiguredTableAssociationRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateConfiguredTableAssociationRequest & WithDescription(const Aws::String &value)
CreateConfiguredTableAssociationRequest & WithRoleArn(Aws::String &&value)
CreateConfiguredTableAssociationRequest & WithMembershipIdentifier(const char *value)
CreateConfiguredTableAssociationRequest & AddTags(const char *key, Aws::String &&value)
CreateConfiguredTableAssociationRequest & WithMembershipIdentifier(Aws::String &&value)
CreateConfiguredTableAssociationRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateConfiguredTableAssociationRequest & WithRoleArn(const char *value)
CreateConfiguredTableAssociationRequest & WithConfiguredTableIdentifier(Aws::String &&value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String