AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DashboardSummary.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_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 QuickSight
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_QUICKSIGHT_API DashboardSummary();
36 AWS_QUICKSIGHT_API DashboardSummary(Aws::Utils::Json::JsonView jsonValue);
38 AWS_QUICKSIGHT_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 DashboardSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
51 inline DashboardSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
52 inline DashboardSummary& WithArn(const char* value) { SetArn(value); return *this;}
54
56
59 inline const Aws::String& GetDashboardId() const{ return m_dashboardId; }
60 inline bool DashboardIdHasBeenSet() const { return m_dashboardIdHasBeenSet; }
61 inline void SetDashboardId(const Aws::String& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = value; }
62 inline void SetDashboardId(Aws::String&& value) { m_dashboardIdHasBeenSet = true; m_dashboardId = std::move(value); }
63 inline void SetDashboardId(const char* value) { m_dashboardIdHasBeenSet = true; m_dashboardId.assign(value); }
64 inline DashboardSummary& WithDashboardId(const Aws::String& value) { SetDashboardId(value); return *this;}
65 inline DashboardSummary& WithDashboardId(Aws::String&& value) { SetDashboardId(std::move(value)); return *this;}
66 inline DashboardSummary& WithDashboardId(const char* value) { SetDashboardId(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 DashboardSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
79 inline DashboardSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
80 inline DashboardSummary& WithName(const char* value) { SetName(value); return *this;}
82
84
87 inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; }
88 inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; }
89 inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; }
90 inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); }
91 inline DashboardSummary& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;}
92 inline DashboardSummary& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;}
94
96
99 inline const Aws::Utils::DateTime& GetLastUpdatedTime() const{ return m_lastUpdatedTime; }
100 inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; }
101 inline void SetLastUpdatedTime(const Aws::Utils::DateTime& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; }
102 inline void SetLastUpdatedTime(Aws::Utils::DateTime&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); }
104 inline DashboardSummary& WithLastUpdatedTime(Aws::Utils::DateTime&& value) { SetLastUpdatedTime(std::move(value)); return *this;}
106
108
111 inline long long GetPublishedVersionNumber() const{ return m_publishedVersionNumber; }
112 inline bool PublishedVersionNumberHasBeenSet() const { return m_publishedVersionNumberHasBeenSet; }
113 inline void SetPublishedVersionNumber(long long value) { m_publishedVersionNumberHasBeenSet = true; m_publishedVersionNumber = value; }
114 inline DashboardSummary& WithPublishedVersionNumber(long long value) { SetPublishedVersionNumber(value); return *this;}
116
118
121 inline const Aws::Utils::DateTime& GetLastPublishedTime() const{ return m_lastPublishedTime; }
122 inline bool LastPublishedTimeHasBeenSet() const { return m_lastPublishedTimeHasBeenSet; }
123 inline void SetLastPublishedTime(const Aws::Utils::DateTime& value) { m_lastPublishedTimeHasBeenSet = true; m_lastPublishedTime = value; }
124 inline void SetLastPublishedTime(Aws::Utils::DateTime&& value) { m_lastPublishedTimeHasBeenSet = true; m_lastPublishedTime = std::move(value); }
126 inline DashboardSummary& WithLastPublishedTime(Aws::Utils::DateTime&& value) { SetLastPublishedTime(std::move(value)); return *this;}
128 private:
129
130 Aws::String m_arn;
131 bool m_arnHasBeenSet = false;
132
133 Aws::String m_dashboardId;
134 bool m_dashboardIdHasBeenSet = false;
135
136 Aws::String m_name;
137 bool m_nameHasBeenSet = false;
138
139 Aws::Utils::DateTime m_createdTime;
140 bool m_createdTimeHasBeenSet = false;
141
142 Aws::Utils::DateTime m_lastUpdatedTime;
143 bool m_lastUpdatedTimeHasBeenSet = false;
144
145 long long m_publishedVersionNumber;
146 bool m_publishedVersionNumberHasBeenSet = false;
147
148 Aws::Utils::DateTime m_lastPublishedTime;
149 bool m_lastPublishedTimeHasBeenSet = false;
150 };
151
152} // namespace Model
153} // namespace QuickSight
154} // namespace Aws
void SetLastPublishedTime(Aws::Utils::DateTime &&value)
DashboardSummary & WithLastPublishedTime(Aws::Utils::DateTime &&value)
void SetLastUpdatedTime(Aws::Utils::DateTime &&value)
void SetLastPublishedTime(const Aws::Utils::DateTime &value)
void SetLastUpdatedTime(const Aws::Utils::DateTime &value)
void SetCreatedTime(Aws::Utils::DateTime &&value)
DashboardSummary & WithDashboardId(Aws::String &&value)
const Aws::Utils::DateTime & GetCreatedTime() const
DashboardSummary & WithCreatedTime(const Aws::Utils::DateTime &value)
DashboardSummary & WithName(const Aws::String &value)
void SetArn(const Aws::String &value)
AWS_QUICKSIGHT_API DashboardSummary(Aws::Utils::Json::JsonView jsonValue)
DashboardSummary & WithArn(const char *value)
DashboardSummary & WithPublishedVersionNumber(long long value)
DashboardSummary & WithDashboardId(const Aws::String &value)
DashboardSummary & WithName(const char *value)
void SetCreatedTime(const Aws::Utils::DateTime &value)
const Aws::Utils::DateTime & GetLastUpdatedTime() const
DashboardSummary & WithLastUpdatedTime(Aws::Utils::DateTime &&value)
DashboardSummary & WithName(Aws::String &&value)
DashboardSummary & WithLastPublishedTime(const Aws::Utils::DateTime &value)
AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const
DashboardSummary & WithLastUpdatedTime(const Aws::Utils::DateTime &value)
void SetName(const Aws::String &value)
const Aws::Utils::DateTime & GetLastPublishedTime() const
DashboardSummary & WithCreatedTime(Aws::Utils::DateTime &&value)
DashboardSummary & WithArn(Aws::String &&value)
AWS_QUICKSIGHT_API DashboardSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetDashboardId() const
void SetDashboardId(const Aws::String &value)
DashboardSummary & WithArn(const Aws::String &value)
DashboardSummary & WithDashboardId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue