AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
UpdateConfiguredTableAssociationRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRoomsRequest.h>
8#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace CleanRooms {
15namespace Model {
16
20 public:
21 AWS_CLEANROOMS_API UpdateConfiguredTableAssociationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "UpdateConfiguredTableAssociation"; }
28
29 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetConfiguredTableAssociationIdentifier() const { return m_configuredTableAssociationIdentifier; }
37 inline bool ConfiguredTableAssociationIdentifierHasBeenSet() const { return m_configuredTableAssociationIdentifierHasBeenSet; }
38 template <typename ConfiguredTableAssociationIdentifierT = Aws::String>
39 void SetConfiguredTableAssociationIdentifier(ConfiguredTableAssociationIdentifierT&& value) {
40 m_configuredTableAssociationIdentifierHasBeenSet = true;
41 m_configuredTableAssociationIdentifier = std::forward<ConfiguredTableAssociationIdentifierT>(value);
42 }
43 template <typename ConfiguredTableAssociationIdentifierT = Aws::String>
45 SetConfiguredTableAssociationIdentifier(std::forward<ConfiguredTableAssociationIdentifierT>(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
73 inline const Aws::String& GetDescription() const { return m_description; }
74 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
75 template <typename DescriptionT = Aws::String>
76 void SetDescription(DescriptionT&& value) {
77 m_descriptionHasBeenSet = true;
78 m_description = std::forward<DescriptionT>(value);
79 }
80 template <typename DescriptionT = Aws::String>
82 SetDescription(std::forward<DescriptionT>(value));
83 return *this;
84 }
86
88
92 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
93 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
94 template <typename RoleArnT = Aws::String>
95 void SetRoleArn(RoleArnT&& value) {
96 m_roleArnHasBeenSet = true;
97 m_roleArn = std::forward<RoleArnT>(value);
98 }
99 template <typename RoleArnT = Aws::String>
101 SetRoleArn(std::forward<RoleArnT>(value));
102 return *this;
103 }
105 private:
106 Aws::String m_configuredTableAssociationIdentifier;
107 bool m_configuredTableAssociationIdentifierHasBeenSet = false;
108
109 Aws::String m_membershipIdentifier;
110 bool m_membershipIdentifierHasBeenSet = false;
111
112 Aws::String m_description;
113 bool m_descriptionHasBeenSet = false;
114
115 Aws::String m_roleArn;
116 bool m_roleArnHasBeenSet = false;
117};
118
119} // namespace Model
120} // namespace CleanRooms
121} // namespace Aws
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
void SetConfiguredTableAssociationIdentifier(ConfiguredTableAssociationIdentifierT &&value)
UpdateConfiguredTableAssociationRequest & WithRoleArn(RoleArnT &&value)
UpdateConfiguredTableAssociationRequest & WithDescription(DescriptionT &&value)
UpdateConfiguredTableAssociationRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
UpdateConfiguredTableAssociationRequest & WithConfiguredTableAssociationIdentifier(ConfiguredTableAssociationIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String