AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ConfiguredTableAssociationAnalysisRule.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/cleanrooms/model/ConfiguredTableAssociationAnalysisRulePolicy.h>
10#include <aws/cleanrooms/model/ConfiguredTableAssociationAnalysisRuleType.h>
11#include <aws/core/utils/DateTime.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace CleanRooms
25{
26namespace Model
27{
28
39 {
40 public:
41 AWS_CLEANROOMS_API ConfiguredTableAssociationAnalysisRule() = default;
44 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
45
46
48
52 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
53 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
54 template<typename MembershipIdentifierT = Aws::String>
55 void SetMembershipIdentifier(MembershipIdentifierT&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::forward<MembershipIdentifierT>(value); }
56 template<typename MembershipIdentifierT = Aws::String>
57 ConfiguredTableAssociationAnalysisRule& WithMembershipIdentifier(MembershipIdentifierT&& value) { SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value)); return *this;}
59
61
64 inline const Aws::String& GetConfiguredTableAssociationId() const { return m_configuredTableAssociationId; }
65 inline bool ConfiguredTableAssociationIdHasBeenSet() const { return m_configuredTableAssociationIdHasBeenSet; }
66 template<typename ConfiguredTableAssociationIdT = Aws::String>
67 void SetConfiguredTableAssociationId(ConfiguredTableAssociationIdT&& value) { m_configuredTableAssociationIdHasBeenSet = true; m_configuredTableAssociationId = std::forward<ConfiguredTableAssociationIdT>(value); }
68 template<typename ConfiguredTableAssociationIdT = Aws::String>
69 ConfiguredTableAssociationAnalysisRule& WithConfiguredTableAssociationId(ConfiguredTableAssociationIdT&& value) { SetConfiguredTableAssociationId(std::forward<ConfiguredTableAssociationIdT>(value)); return *this;}
71
73
76 inline const Aws::String& GetConfiguredTableAssociationArn() const { return m_configuredTableAssociationArn; }
77 inline bool ConfiguredTableAssociationArnHasBeenSet() const { return m_configuredTableAssociationArnHasBeenSet; }
78 template<typename ConfiguredTableAssociationArnT = Aws::String>
79 void SetConfiguredTableAssociationArn(ConfiguredTableAssociationArnT&& value) { m_configuredTableAssociationArnHasBeenSet = true; m_configuredTableAssociationArn = std::forward<ConfiguredTableAssociationArnT>(value); }
80 template<typename ConfiguredTableAssociationArnT = Aws::String>
81 ConfiguredTableAssociationAnalysisRule& WithConfiguredTableAssociationArn(ConfiguredTableAssociationArnT&& value) { SetConfiguredTableAssociationArn(std::forward<ConfiguredTableAssociationArnT>(value)); return *this;}
83
85
88 inline const ConfiguredTableAssociationAnalysisRulePolicy& GetPolicy() const { return m_policy; }
89 inline bool PolicyHasBeenSet() const { return m_policyHasBeenSet; }
90 template<typename PolicyT = ConfiguredTableAssociationAnalysisRulePolicy>
91 void SetPolicy(PolicyT&& value) { m_policyHasBeenSet = true; m_policy = std::forward<PolicyT>(value); }
92 template<typename PolicyT = ConfiguredTableAssociationAnalysisRulePolicy>
93 ConfiguredTableAssociationAnalysisRule& WithPolicy(PolicyT&& value) { SetPolicy(std::forward<PolicyT>(value)); return *this;}
95
97
100 inline ConfiguredTableAssociationAnalysisRuleType GetType() const { return m_type; }
101 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
102 inline void SetType(ConfiguredTableAssociationAnalysisRuleType value) { m_typeHasBeenSet = true; m_type = value; }
105
107
110 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
111 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
112 template<typename CreateTimeT = Aws::Utils::DateTime>
113 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
114 template<typename CreateTimeT = Aws::Utils::DateTime>
115 ConfiguredTableAssociationAnalysisRule& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
117
119
122 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
123 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
124 template<typename UpdateTimeT = Aws::Utils::DateTime>
125 void SetUpdateTime(UpdateTimeT&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::forward<UpdateTimeT>(value); }
126 template<typename UpdateTimeT = Aws::Utils::DateTime>
127 ConfiguredTableAssociationAnalysisRule& WithUpdateTime(UpdateTimeT&& value) { SetUpdateTime(std::forward<UpdateTimeT>(value)); return *this;}
129 private:
130
131 Aws::String m_membershipIdentifier;
132 bool m_membershipIdentifierHasBeenSet = false;
133
134 Aws::String m_configuredTableAssociationId;
135 bool m_configuredTableAssociationIdHasBeenSet = false;
136
137 Aws::String m_configuredTableAssociationArn;
138 bool m_configuredTableAssociationArnHasBeenSet = false;
139
141 bool m_policyHasBeenSet = false;
142
144 bool m_typeHasBeenSet = false;
145
146 Aws::Utils::DateTime m_createTime{};
147 bool m_createTimeHasBeenSet = false;
148
149 Aws::Utils::DateTime m_updateTime{};
150 bool m_updateTimeHasBeenSet = false;
151 };
152
153} // namespace Model
154} // namespace CleanRooms
155} // namespace Aws
AWS_CLEANROOMS_API ConfiguredTableAssociationAnalysisRule & operator=(Aws::Utils::Json::JsonView jsonValue)
ConfiguredTableAssociationAnalysisRule & WithConfiguredTableAssociationArn(ConfiguredTableAssociationArnT &&value)
ConfiguredTableAssociationAnalysisRule & WithCreateTime(CreateTimeT &&value)
ConfiguredTableAssociationAnalysisRule & WithUpdateTime(UpdateTimeT &&value)
ConfiguredTableAssociationAnalysisRule & WithPolicy(PolicyT &&value)
ConfiguredTableAssociationAnalysisRule & WithType(ConfiguredTableAssociationAnalysisRuleType value)
ConfiguredTableAssociationAnalysisRule & WithConfiguredTableAssociationId(ConfiguredTableAssociationIdT &&value)
AWS_CLEANROOMS_API ConfiguredTableAssociationAnalysisRule(Aws::Utils::Json::JsonView jsonValue)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
ConfiguredTableAssociationAnalysisRule & WithMembershipIdentifier(MembershipIdentifierT &&value)
const ConfiguredTableAssociationAnalysisRulePolicy & GetPolicy() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue