AWS SDK for C++

AWS SDK for C++ Version 1.11.850

Loading...
Searching...
No Matches
DisallowIntermediateTableRequest.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 DisallowIntermediateTableRequest() = 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 "DisallowIntermediateTable"; }
28
29 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
37 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
38 template <typename MembershipIdentifierT = Aws::String>
39 void SetMembershipIdentifier(MembershipIdentifierT&& value) {
40 m_membershipIdentifierHasBeenSet = true;
41 m_membershipIdentifier = std::forward<MembershipIdentifierT>(value);
42 }
43 template <typename MembershipIdentifierT = Aws::String>
45 SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetIntermediateTableName() const { return m_intermediateTableName; }
55 inline bool IntermediateTableNameHasBeenSet() const { return m_intermediateTableNameHasBeenSet; }
56 template <typename IntermediateTableNameT = Aws::String>
57 void SetIntermediateTableName(IntermediateTableNameT&& value) {
58 m_intermediateTableNameHasBeenSet = true;
59 m_intermediateTableName = std::forward<IntermediateTableNameT>(value);
60 }
61 template <typename IntermediateTableNameT = Aws::String>
63 SetIntermediateTableName(std::forward<IntermediateTableNameT>(value));
64 return *this;
65 }
67
69
73 inline bool GetIncludeDescendants() const { return m_includeDescendants; }
74 inline bool IncludeDescendantsHasBeenSet() const { return m_includeDescendantsHasBeenSet; }
75 inline void SetIncludeDescendants(bool value) {
76 m_includeDescendantsHasBeenSet = true;
77 m_includeDescendants = value;
78 }
81 return *this;
82 }
84 private:
85 Aws::String m_membershipIdentifier;
86
87 Aws::String m_intermediateTableName;
88
89 bool m_includeDescendants{false};
90 bool m_membershipIdentifierHasBeenSet = false;
91 bool m_intermediateTableNameHasBeenSet = false;
92 bool m_includeDescendantsHasBeenSet = false;
93};
94
95} // namespace Model
96} // namespace CleanRooms
97} // namespace Aws
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
DisallowIntermediateTableRequest & WithMembershipIdentifier(MembershipIdentifierT &&value)
DisallowIntermediateTableRequest & WithIntermediateTableName(IntermediateTableNameT &&value)
AWS_CLEANROOMS_API DisallowIntermediateTableRequest()=default
DisallowIntermediateTableRequest & WithIncludeDescendants(bool value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String