AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateConfiguredTableAssociationRequest.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 UpdateConfiguredTableAssociationRequest() = default;
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 "UpdateConfiguredTableAssociation"; }
31
32 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetConfiguredTableAssociationIdentifier() const { return m_configuredTableAssociationIdentifier; }
41 inline bool ConfiguredTableAssociationIdentifierHasBeenSet() const { return m_configuredTableAssociationIdentifierHasBeenSet; }
42 template<typename ConfiguredTableAssociationIdentifierT = Aws::String>
43 void SetConfiguredTableAssociationIdentifier(ConfiguredTableAssociationIdentifierT&& value) { m_configuredTableAssociationIdentifierHasBeenSet = true; m_configuredTableAssociationIdentifier = std::forward<ConfiguredTableAssociationIdentifierT>(value); }
44 template<typename ConfiguredTableAssociationIdentifierT = Aws::String>
45 UpdateConfiguredTableAssociationRequest& WithConfiguredTableAssociationIdentifier(ConfiguredTableAssociationIdentifierT&& value) { SetConfiguredTableAssociationIdentifier(std::forward<ConfiguredTableAssociationIdentifierT>(value)); return *this;}
47
49
53 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
54 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
55 template<typename MembershipIdentifierT = Aws::String>
56 void SetMembershipIdentifier(MembershipIdentifierT&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::forward<MembershipIdentifierT>(value); }
57 template<typename MembershipIdentifierT = Aws::String>
58 UpdateConfiguredTableAssociationRequest& WithMembershipIdentifier(MembershipIdentifierT&& value) { SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value)); return *this;}
60
62
65 inline const Aws::String& GetDescription() const { return m_description; }
66 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
67 template<typename DescriptionT = Aws::String>
68 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
69 template<typename DescriptionT = Aws::String>
70 UpdateConfiguredTableAssociationRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
72
74
78 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
79 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
80 template<typename RoleArnT = Aws::String>
81 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
82 template<typename RoleArnT = Aws::String>
83 UpdateConfiguredTableAssociationRequest& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
85 private:
86
87 Aws::String m_configuredTableAssociationIdentifier;
88 bool m_configuredTableAssociationIdentifierHasBeenSet = false;
89
90 Aws::String m_membershipIdentifier;
91 bool m_membershipIdentifierHasBeenSet = false;
92
93 Aws::String m_description;
94 bool m_descriptionHasBeenSet = false;
95
96 Aws::String m_roleArn;
97 bool m_roleArnHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace CleanRooms
102} // 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