AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateIdNamespaceAssociationRequest.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/cleanrooms/model/IdMappingConfig.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CleanRooms
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CLEANROOMS_API UpdateIdNamespaceAssociationRequest() = default;
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 "UpdateIdNamespaceAssociation"; }
32
33 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetIdNamespaceAssociationIdentifier() const { return m_idNamespaceAssociationIdentifier; }
42 inline bool IdNamespaceAssociationIdentifierHasBeenSet() const { return m_idNamespaceAssociationIdentifierHasBeenSet; }
43 template<typename IdNamespaceAssociationIdentifierT = Aws::String>
44 void SetIdNamespaceAssociationIdentifier(IdNamespaceAssociationIdentifierT&& value) { m_idNamespaceAssociationIdentifierHasBeenSet = true; m_idNamespaceAssociationIdentifier = std::forward<IdNamespaceAssociationIdentifierT>(value); }
45 template<typename IdNamespaceAssociationIdentifierT = Aws::String>
46 UpdateIdNamespaceAssociationRequest& WithIdNamespaceAssociationIdentifier(IdNamespaceAssociationIdentifierT&& value) { SetIdNamespaceAssociationIdentifier(std::forward<IdNamespaceAssociationIdentifierT>(value)); return *this;}
48
50
54 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
55 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
56 template<typename MembershipIdentifierT = Aws::String>
57 void SetMembershipIdentifier(MembershipIdentifierT&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::forward<MembershipIdentifierT>(value); }
58 template<typename MembershipIdentifierT = Aws::String>
59 UpdateIdNamespaceAssociationRequest& WithMembershipIdentifier(MembershipIdentifierT&& value) { SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value)); return *this;}
61
63
66 inline const Aws::String& GetName() const { return m_name; }
67 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
68 template<typename NameT = Aws::String>
69 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
70 template<typename NameT = Aws::String>
71 UpdateIdNamespaceAssociationRequest& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
73
75
78 inline const Aws::String& GetDescription() const { return m_description; }
79 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
80 template<typename DescriptionT = Aws::String>
81 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
82 template<typename DescriptionT = Aws::String>
83 UpdateIdNamespaceAssociationRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
85
87
90 inline const IdMappingConfig& GetIdMappingConfig() const { return m_idMappingConfig; }
91 inline bool IdMappingConfigHasBeenSet() const { return m_idMappingConfigHasBeenSet; }
92 template<typename IdMappingConfigT = IdMappingConfig>
93 void SetIdMappingConfig(IdMappingConfigT&& value) { m_idMappingConfigHasBeenSet = true; m_idMappingConfig = std::forward<IdMappingConfigT>(value); }
94 template<typename IdMappingConfigT = IdMappingConfig>
95 UpdateIdNamespaceAssociationRequest& WithIdMappingConfig(IdMappingConfigT&& value) { SetIdMappingConfig(std::forward<IdMappingConfigT>(value)); return *this;}
97 private:
98
99 Aws::String m_idNamespaceAssociationIdentifier;
100 bool m_idNamespaceAssociationIdentifierHasBeenSet = false;
101
102 Aws::String m_membershipIdentifier;
103 bool m_membershipIdentifierHasBeenSet = false;
104
105 Aws::String m_name;
106 bool m_nameHasBeenSet = false;
107
108 Aws::String m_description;
109 bool m_descriptionHasBeenSet = false;
110
111 IdMappingConfig m_idMappingConfig;
112 bool m_idMappingConfigHasBeenSet = false;
113 };
114
115} // namespace Model
116} // namespace CleanRooms
117} // namespace Aws
UpdateIdNamespaceAssociationRequest & WithIdMappingConfig(IdMappingConfigT &&value)
AWS_CLEANROOMS_API UpdateIdNamespaceAssociationRequest()=default
UpdateIdNamespaceAssociationRequest & WithDescription(DescriptionT &&value)
void SetIdNamespaceAssociationIdentifier(IdNamespaceAssociationIdentifierT &&value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
UpdateIdNamespaceAssociationRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
UpdateIdNamespaceAssociationRequest & WithIdNamespaceAssociationIdentifier(IdNamespaceAssociationIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String