AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RegistryListItem.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/glue/model/RegistryStatus.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace Glue
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GLUE_API RegistryListItem();
40
41
43
46 inline const Aws::String& GetRegistryName() const{ return m_registryName; }
47 inline bool RegistryNameHasBeenSet() const { return m_registryNameHasBeenSet; }
48 inline void SetRegistryName(const Aws::String& value) { m_registryNameHasBeenSet = true; m_registryName = value; }
49 inline void SetRegistryName(Aws::String&& value) { m_registryNameHasBeenSet = true; m_registryName = std::move(value); }
50 inline void SetRegistryName(const char* value) { m_registryNameHasBeenSet = true; m_registryName.assign(value); }
51 inline RegistryListItem& WithRegistryName(const Aws::String& value) { SetRegistryName(value); return *this;}
52 inline RegistryListItem& WithRegistryName(Aws::String&& value) { SetRegistryName(std::move(value)); return *this;}
53 inline RegistryListItem& WithRegistryName(const char* value) { SetRegistryName(value); return *this;}
55
57
60 inline const Aws::String& GetRegistryArn() const{ return m_registryArn; }
61 inline bool RegistryArnHasBeenSet() const { return m_registryArnHasBeenSet; }
62 inline void SetRegistryArn(const Aws::String& value) { m_registryArnHasBeenSet = true; m_registryArn = value; }
63 inline void SetRegistryArn(Aws::String&& value) { m_registryArnHasBeenSet = true; m_registryArn = std::move(value); }
64 inline void SetRegistryArn(const char* value) { m_registryArnHasBeenSet = true; m_registryArn.assign(value); }
65 inline RegistryListItem& WithRegistryArn(const Aws::String& value) { SetRegistryArn(value); return *this;}
66 inline RegistryListItem& WithRegistryArn(Aws::String&& value) { SetRegistryArn(std::move(value)); return *this;}
67 inline RegistryListItem& WithRegistryArn(const char* value) { SetRegistryArn(value); return *this;}
69
71
74 inline const Aws::String& GetDescription() const{ return m_description; }
75 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
76 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
77 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
78 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
79 inline RegistryListItem& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
80 inline RegistryListItem& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
81 inline RegistryListItem& WithDescription(const char* value) { SetDescription(value); return *this;}
83
85
88 inline const RegistryStatus& GetStatus() const{ return m_status; }
89 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
90 inline void SetStatus(const RegistryStatus& value) { m_statusHasBeenSet = true; m_status = value; }
91 inline void SetStatus(RegistryStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
92 inline RegistryListItem& WithStatus(const RegistryStatus& value) { SetStatus(value); return *this;}
93 inline RegistryListItem& WithStatus(RegistryStatus&& value) { SetStatus(std::move(value)); return *this;}
95
97
100 inline const Aws::String& GetCreatedTime() const{ return m_createdTime; }
101 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
102 inline void SetCreatedTime(const Aws::String& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
103 inline void SetCreatedTime(Aws::String&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
104 inline void SetCreatedTime(const char* value) { m_createdTimeHasBeenSet = true; m_createdTime.assign(value); }
105 inline RegistryListItem& WithCreatedTime(const Aws::String& value) { SetCreatedTime(value); return *this;}
106 inline RegistryListItem& WithCreatedTime(Aws::String&& value) { SetCreatedTime(std::move(value)); return *this;}
107 inline RegistryListItem& WithCreatedTime(const char* value) { SetCreatedTime(value); return *this;}
109
111
114 inline const Aws::String& GetUpdatedTime() const{ return m_updatedTime; }
115 inline bool UpdatedTimeHasBeenSet() const { return m_updatedTimeHasBeenSet; }
116 inline void SetUpdatedTime(const Aws::String& value) { m_updatedTimeHasBeenSet = true; m_updatedTime = value; }
117 inline void SetUpdatedTime(Aws::String&& value) { m_updatedTimeHasBeenSet = true; m_updatedTime = std::move(value); }
118 inline void SetUpdatedTime(const char* value) { m_updatedTimeHasBeenSet = true; m_updatedTime.assign(value); }
119 inline RegistryListItem& WithUpdatedTime(const Aws::String& value) { SetUpdatedTime(value); return *this;}
120 inline RegistryListItem& WithUpdatedTime(Aws::String&& value) { SetUpdatedTime(std::move(value)); return *this;}
121 inline RegistryListItem& WithUpdatedTime(const char* value) { SetUpdatedTime(value); return *this;}
123 private:
124
125 Aws::String m_registryName;
126 bool m_registryNameHasBeenSet = false;
127
128 Aws::String m_registryArn;
129 bool m_registryArnHasBeenSet = false;
130
131 Aws::String m_description;
132 bool m_descriptionHasBeenSet = false;
133
134 RegistryStatus m_status;
135 bool m_statusHasBeenSet = false;
136
137 Aws::String m_createdTime;
138 bool m_createdTimeHasBeenSet = false;
139
140 Aws::String m_updatedTime;
141 bool m_updatedTimeHasBeenSet = false;
142 };
143
144} // namespace Model
145} // namespace Glue
146} // namespace Aws
void SetUpdatedTime(const Aws::String &value)
AWS_GLUE_API RegistryListItem(Aws::Utils::Json::JsonView jsonValue)
void SetStatus(const RegistryStatus &value)
AWS_GLUE_API RegistryListItem & operator=(Aws::Utils::Json::JsonView jsonValue)
RegistryListItem & WithRegistryArn(const char *value)
void SetRegistryArn(const Aws::String &value)
void SetUpdatedTime(Aws::String &&value)
RegistryListItem & WithCreatedTime(const Aws::String &value)
void SetStatus(RegistryStatus &&value)
const Aws::String & GetDescription() const
void SetRegistryArn(const char *value)
RegistryListItem & WithCreatedTime(Aws::String &&value)
RegistryListItem & WithStatus(const RegistryStatus &value)
void SetDescription(const Aws::String &value)
void SetCreatedTime(Aws::String &&value)
RegistryListItem & WithUpdatedTime(Aws::String &&value)
void SetRegistryArn(Aws::String &&value)
const RegistryStatus & GetStatus() const
void SetCreatedTime(const char *value)
RegistryListItem & WithCreatedTime(const char *value)
RegistryListItem & WithRegistryName(const char *value)
RegistryListItem & WithRegistryName(Aws::String &&value)
const Aws::String & GetRegistryArn() const
void SetDescription(Aws::String &&value)
RegistryListItem & WithUpdatedTime(const char *value)
void SetCreatedTime(const Aws::String &value)
RegistryListItem & WithUpdatedTime(const Aws::String &value)
void SetRegistryName(const Aws::String &value)
void SetRegistryName(const char *value)
RegistryListItem & WithRegistryArn(const Aws::String &value)
RegistryListItem & WithDescription(const Aws::String &value)
const Aws::String & GetUpdatedTime() const
RegistryListItem & WithDescription(const char *value)
void SetUpdatedTime(const char *value)
void SetRegistryName(Aws::String &&value)
RegistryListItem & WithStatus(RegistryStatus &&value)
RegistryListItem & WithRegistryArn(Aws::String &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetCreatedTime() const
RegistryListItem & WithDescription(Aws::String &&value)
const Aws::String & GetRegistryName() const
RegistryListItem & WithRegistryName(const Aws::String &value)
void SetDescription(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue