AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdatePrivacyBudgetTemplateRequest.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/PrivacyBudgetType.h>
11#include <aws/cleanrooms/model/PrivacyBudgetTemplateUpdateParameters.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CleanRooms
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdatePrivacyBudgetTemplate"; }
33
34 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
35
36
38
43 inline const Aws::String& GetMembershipIdentifier() const{ return m_membershipIdentifier; }
44 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
45 inline void SetMembershipIdentifier(const Aws::String& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = value; }
46 inline void SetMembershipIdentifier(Aws::String&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::move(value); }
47 inline void SetMembershipIdentifier(const char* value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier.assign(value); }
52
54
58 inline const Aws::String& GetPrivacyBudgetTemplateIdentifier() const{ return m_privacyBudgetTemplateIdentifier; }
59 inline bool PrivacyBudgetTemplateIdentifierHasBeenSet() const { return m_privacyBudgetTemplateIdentifierHasBeenSet; }
60 inline void SetPrivacyBudgetTemplateIdentifier(const Aws::String& value) { m_privacyBudgetTemplateIdentifierHasBeenSet = true; m_privacyBudgetTemplateIdentifier = value; }
61 inline void SetPrivacyBudgetTemplateIdentifier(Aws::String&& value) { m_privacyBudgetTemplateIdentifierHasBeenSet = true; m_privacyBudgetTemplateIdentifier = std::move(value); }
62 inline void SetPrivacyBudgetTemplateIdentifier(const char* value) { m_privacyBudgetTemplateIdentifierHasBeenSet = true; m_privacyBudgetTemplateIdentifier.assign(value); }
67
69
72 inline const PrivacyBudgetType& GetPrivacyBudgetType() const{ return m_privacyBudgetType; }
73 inline bool PrivacyBudgetTypeHasBeenSet() const { return m_privacyBudgetTypeHasBeenSet; }
74 inline void SetPrivacyBudgetType(const PrivacyBudgetType& value) { m_privacyBudgetTypeHasBeenSet = true; m_privacyBudgetType = value; }
75 inline void SetPrivacyBudgetType(PrivacyBudgetType&& value) { m_privacyBudgetTypeHasBeenSet = true; m_privacyBudgetType = std::move(value); }
79
81
85 inline const PrivacyBudgetTemplateUpdateParameters& GetParameters() const{ return m_parameters; }
86 inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
87 inline void SetParameters(const PrivacyBudgetTemplateUpdateParameters& value) { m_parametersHasBeenSet = true; m_parameters = value; }
88 inline void SetParameters(PrivacyBudgetTemplateUpdateParameters&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
92 private:
93
94 Aws::String m_membershipIdentifier;
95 bool m_membershipIdentifierHasBeenSet = false;
96
97 Aws::String m_privacyBudgetTemplateIdentifier;
98 bool m_privacyBudgetTemplateIdentifierHasBeenSet = false;
99
100 PrivacyBudgetType m_privacyBudgetType;
101 bool m_privacyBudgetTypeHasBeenSet = false;
102
104 bool m_parametersHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace CleanRooms
109} // namespace Aws
UpdatePrivacyBudgetTemplateRequest & WithMembershipIdentifier(const Aws::String &value)
const PrivacyBudgetTemplateUpdateParameters & GetParameters() const
UpdatePrivacyBudgetTemplateRequest & WithPrivacyBudgetTemplateIdentifier(const Aws::String &value)
UpdatePrivacyBudgetTemplateRequest & WithPrivacyBudgetType(PrivacyBudgetType &&value)
UpdatePrivacyBudgetTemplateRequest & WithMembershipIdentifier(Aws::String &&value)
UpdatePrivacyBudgetTemplateRequest & WithParameters(PrivacyBudgetTemplateUpdateParameters &&value)
UpdatePrivacyBudgetTemplateRequest & WithPrivacyBudgetTemplateIdentifier(const char *value)
UpdatePrivacyBudgetTemplateRequest & WithParameters(const PrivacyBudgetTemplateUpdateParameters &value)
UpdatePrivacyBudgetTemplateRequest & WithMembershipIdentifier(const char *value)
UpdatePrivacyBudgetTemplateRequest & WithPrivacyBudgetTemplateIdentifier(Aws::String &&value)
void SetParameters(PrivacyBudgetTemplateUpdateParameters &&value)
void SetParameters(const PrivacyBudgetTemplateUpdateParameters &value)
UpdatePrivacyBudgetTemplateRequest & WithPrivacyBudgetType(const PrivacyBudgetType &value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String