AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AllowDenyList.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace FraudDetector
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_FRAUDDETECTOR_API AllowDenyList();
35 AWS_FRAUDDETECTOR_API AllowDenyList(Aws::Utils::Json::JsonView jsonValue);
36 AWS_FRAUDDETECTOR_API AllowDenyList& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetName() const{ return m_name; }
45 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
46 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
47 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
48 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
49 inline AllowDenyList& WithName(const Aws::String& value) { SetName(value); return *this;}
50 inline AllowDenyList& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
51 inline AllowDenyList& WithName(const char* value) { SetName(value); return *this;}
53
55
58 inline const Aws::String& GetDescription() const{ return m_description; }
59 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
60 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
61 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
62 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
63 inline AllowDenyList& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
64 inline AllowDenyList& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
65 inline AllowDenyList& WithDescription(const char* value) { SetDescription(value); return *this;}
67
69
72 inline const Aws::String& GetVariableType() const{ return m_variableType; }
73 inline bool VariableTypeHasBeenSet() const { return m_variableTypeHasBeenSet; }
74 inline void SetVariableType(const Aws::String& value) { m_variableTypeHasBeenSet = true; m_variableType = value; }
75 inline void SetVariableType(Aws::String&& value) { m_variableTypeHasBeenSet = true; m_variableType = std::move(value); }
76 inline void SetVariableType(const char* value) { m_variableTypeHasBeenSet = true; m_variableType.assign(value); }
77 inline AllowDenyList& WithVariableType(const Aws::String& value) { SetVariableType(value); return *this;}
78 inline AllowDenyList& WithVariableType(Aws::String&& value) { SetVariableType(std::move(value)); return *this;}
79 inline AllowDenyList& WithVariableType(const char* value) { SetVariableType(value); return *this;}
81
83
86 inline const Aws::String& GetCreatedTime() const{ return m_createdTime; }
87 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
88 inline void SetCreatedTime(const Aws::String& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
89 inline void SetCreatedTime(Aws::String&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
90 inline void SetCreatedTime(const char* value) { m_createdTimeHasBeenSet = true; m_createdTime.assign(value); }
91 inline AllowDenyList& WithCreatedTime(const Aws::String& value) { SetCreatedTime(value); return *this;}
92 inline AllowDenyList& WithCreatedTime(Aws::String&& value) { SetCreatedTime(std::move(value)); return *this;}
93 inline AllowDenyList& WithCreatedTime(const char* value) { SetCreatedTime(value); return *this;}
95
97
100 inline const Aws::String& GetUpdatedTime() const{ return m_updatedTime; }
101 inline bool UpdatedTimeHasBeenSet() const { return m_updatedTimeHasBeenSet; }
102 inline void SetUpdatedTime(const Aws::String& value) { m_updatedTimeHasBeenSet = true; m_updatedTime = value; }
103 inline void SetUpdatedTime(Aws::String&& value) { m_updatedTimeHasBeenSet = true; m_updatedTime = std::move(value); }
104 inline void SetUpdatedTime(const char* value) { m_updatedTimeHasBeenSet = true; m_updatedTime.assign(value); }
105 inline AllowDenyList& WithUpdatedTime(const Aws::String& value) { SetUpdatedTime(value); return *this;}
106 inline AllowDenyList& WithUpdatedTime(Aws::String&& value) { SetUpdatedTime(std::move(value)); return *this;}
107 inline AllowDenyList& WithUpdatedTime(const char* value) { SetUpdatedTime(value); return *this;}
109
111
114 inline const Aws::String& GetArn() const{ return m_arn; }
115 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
116 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
117 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
118 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
119 inline AllowDenyList& WithArn(const Aws::String& value) { SetArn(value); return *this;}
120 inline AllowDenyList& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
121 inline AllowDenyList& WithArn(const char* value) { SetArn(value); return *this;}
123 private:
124
125 Aws::String m_name;
126 bool m_nameHasBeenSet = false;
127
128 Aws::String m_description;
129 bool m_descriptionHasBeenSet = false;
130
131 Aws::String m_variableType;
132 bool m_variableTypeHasBeenSet = false;
133
134 Aws::String m_createdTime;
135 bool m_createdTimeHasBeenSet = false;
136
137 Aws::String m_updatedTime;
138 bool m_updatedTimeHasBeenSet = false;
139
140 Aws::String m_arn;
141 bool m_arnHasBeenSet = false;
142 };
143
144} // namespace Model
145} // namespace FraudDetector
146} // namespace Aws
AllowDenyList & WithName(const Aws::String &value)
AllowDenyList & WithVariableType(const Aws::String &value)
AWS_FRAUDDETECTOR_API AllowDenyList()
void SetUpdatedTime(const Aws::String &value)
AllowDenyList & WithCreatedTime(Aws::String &&value)
const Aws::String & GetDescription() const
AllowDenyList & WithName(const char *value)
AllowDenyList & WithVariableType(const char *value)
AllowDenyList & WithArn(const Aws::String &value)
const Aws::String & GetUpdatedTime() const
AllowDenyList & WithArn(Aws::String &&value)
void SetArn(const Aws::String &value)
void SetCreatedTime(Aws::String &&value)
AllowDenyList & WithCreatedTime(const char *value)
void SetVariableType(Aws::String &&value)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
void SetUpdatedTime(Aws::String &&value)
const Aws::String & GetCreatedTime() const
AWS_FRAUDDETECTOR_API AllowDenyList & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetName() const
AllowDenyList & WithUpdatedTime(Aws::String &&value)
AllowDenyList & WithArn(const char *value)
void SetName(const Aws::String &value)
const Aws::String & GetVariableType() const
AllowDenyList & WithName(Aws::String &&value)
void SetDescription(Aws::String &&value)
AllowDenyList & WithDescription(const char *value)
const Aws::String & GetArn() const
AllowDenyList & WithVariableType(Aws::String &&value)
AllowDenyList & WithDescription(const Aws::String &value)
AllowDenyList & WithDescription(Aws::String &&value)
AllowDenyList & WithUpdatedTime(const Aws::String &value)
void SetVariableType(const Aws::String &value)
AllowDenyList & WithUpdatedTime(const char *value)
void SetDescription(const Aws::String &value)
AllowDenyList & WithCreatedTime(const Aws::String &value)
void SetCreatedTime(const Aws::String &value)
void SetVariableType(const char *value)
AWS_FRAUDDETECTOR_API AllowDenyList(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue