AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ApplicationSummary.h
1
6#pragma once
7#include <aws/appintegrations/AppIntegrationsService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.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 AppIntegrationsService
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary();
36 AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary(Aws::Utils::Json::JsonView jsonValue);
37 AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_APPINTEGRATIONSSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetArn() const{ return m_arn; }
46 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
47 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
48 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
49 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
50 inline ApplicationSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
51 inline ApplicationSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
52 inline ApplicationSummary& WithArn(const char* value) { SetArn(value); return *this;}
54
56
59 inline const Aws::String& GetId() const{ return m_id; }
60 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
61 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
62 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
63 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
64 inline ApplicationSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
65 inline ApplicationSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
66 inline ApplicationSummary& WithId(const char* value) { SetId(value); return *this;}
68
70
73 inline const Aws::String& GetName() const{ return m_name; }
74 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
75 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
76 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
77 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
78 inline ApplicationSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
79 inline ApplicationSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
80 inline ApplicationSummary& WithName(const char* value) { SetName(value); return *this;}
82
84
87 inline const Aws::String& GetNamespace() const{ return m_namespace; }
88 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
89 inline void SetNamespace(const Aws::String& value) { m_namespaceHasBeenSet = true; m_namespace = value; }
90 inline void SetNamespace(Aws::String&& value) { m_namespaceHasBeenSet = true; m_namespace = std::move(value); }
91 inline void SetNamespace(const char* value) { m_namespaceHasBeenSet = true; m_namespace.assign(value); }
92 inline ApplicationSummary& WithNamespace(const Aws::String& value) { SetNamespace(value); return *this;}
93 inline ApplicationSummary& WithNamespace(Aws::String&& value) { SetNamespace(std::move(value)); return *this;}
94 inline ApplicationSummary& WithNamespace(const char* value) { SetNamespace(value); return *this;}
96
98
101 inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; }
102 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
103 inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
104 inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
105 inline ApplicationSummary& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;}
106 inline ApplicationSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;}
108
110
113 inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
114 inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
115 inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
116 inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
118 inline ApplicationSummary& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;}
120 private:
121
122 Aws::String m_arn;
123 bool m_arnHasBeenSet = false;
124
125 Aws::String m_id;
126 bool m_idHasBeenSet = false;
127
128 Aws::String m_name;
129 bool m_nameHasBeenSet = false;
130
131 Aws::String m_namespace;
132 bool m_namespaceHasBeenSet = false;
133
134 Aws::Utils::DateTime m_createdTime;
135 bool m_createdTimeHasBeenSet = false;
136
137 Aws::Utils::DateTime m_lastModifiedTime;
138 bool m_lastModifiedTimeHasBeenSet = false;
139 };
140
141} // namespace Model
142} // namespace AppIntegrationsService
143} // namespace Aws
ApplicationSummary & WithNamespace(const char *value)
ApplicationSummary & WithLastModifiedTime(const Aws::Utils::DateTime &value)
ApplicationSummary & WithId(const char *value)
ApplicationSummary & WithCreatedTime(Aws::Utils::DateTime &&value)
ApplicationSummary & WithNamespace(const Aws::String &value)
ApplicationSummary & WithId(const Aws::String &value)
ApplicationSummary & WithArn(Aws::String &&value)
AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Utils::DateTime & GetLastModifiedTime() const
void SetLastModifiedTime(const Aws::Utils::DateTime &value)
ApplicationSummary & WithArn(const char *value)
ApplicationSummary & WithArn(const Aws::String &value)
ApplicationSummary & WithName(Aws::String &&value)
void SetCreatedTime(const Aws::Utils::DateTime &value)
ApplicationSummary & WithName(const char *value)
AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary()
ApplicationSummary & WithCreatedTime(const Aws::Utils::DateTime &value)
ApplicationSummary & WithId(Aws::String &&value)
ApplicationSummary & WithLastModifiedTime(Aws::Utils::DateTime &&value)
ApplicationSummary & WithNamespace(Aws::String &&value)
AWS_APPINTEGRATIONSSERVICE_API ApplicationSummary(Aws::Utils::Json::JsonView jsonValue)
AWS_APPINTEGRATIONSSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
ApplicationSummary & WithName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue