AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DataSetSummary.h
1
6#pragma once
7#include <aws/m2/MainframeModernization_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.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 MainframeModernization
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_MAINFRAMEMODERNIZATION_API DataSetSummary();
36 AWS_MAINFRAMEMODERNIZATION_API DataSetSummary(Aws::Utils::Json::JsonView jsonValue);
37 AWS_MAINFRAMEMODERNIZATION_API DataSetSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
46 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
47 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
48 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); }
49 inline DataSetSummary& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;}
50 inline DataSetSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
52
54
57 inline const Aws::String& GetDataSetName() const{ return m_dataSetName; }
58 inline bool DataSetNameHasBeenSet() const { return m_dataSetNameHasBeenSet; }
59 inline void SetDataSetName(const Aws::String& value) { m_dataSetNameHasBeenSet = true; m_dataSetName = value; }
60 inline void SetDataSetName(Aws::String&& value) { m_dataSetNameHasBeenSet = true; m_dataSetName = std::move(value); }
61 inline void SetDataSetName(const char* value) { m_dataSetNameHasBeenSet = true; m_dataSetName.assign(value); }
62 inline DataSetSummary& WithDataSetName(const Aws::String& value) { SetDataSetName(value); return *this;}
63 inline DataSetSummary& WithDataSetName(Aws::String&& value) { SetDataSetName(std::move(value)); return *this;}
64 inline DataSetSummary& WithDataSetName(const char* value) { SetDataSetName(value); return *this;}
66
68
71 inline const Aws::String& GetDataSetOrg() const{ return m_dataSetOrg; }
72 inline bool DataSetOrgHasBeenSet() const { return m_dataSetOrgHasBeenSet; }
73 inline void SetDataSetOrg(const Aws::String& value) { m_dataSetOrgHasBeenSet = true; m_dataSetOrg = value; }
74 inline void SetDataSetOrg(Aws::String&& value) { m_dataSetOrgHasBeenSet = true; m_dataSetOrg = std::move(value); }
75 inline void SetDataSetOrg(const char* value) { m_dataSetOrgHasBeenSet = true; m_dataSetOrg.assign(value); }
76 inline DataSetSummary& WithDataSetOrg(const Aws::String& value) { SetDataSetOrg(value); return *this;}
77 inline DataSetSummary& WithDataSetOrg(Aws::String&& value) { SetDataSetOrg(std::move(value)); return *this;}
78 inline DataSetSummary& WithDataSetOrg(const char* value) { SetDataSetOrg(value); return *this;}
80
82
85 inline const Aws::String& GetFormat() const{ return m_format; }
86 inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; }
87 inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; }
88 inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); }
89 inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); }
90 inline DataSetSummary& WithFormat(const Aws::String& value) { SetFormat(value); return *this;}
91 inline DataSetSummary& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;}
92 inline DataSetSummary& WithFormat(const char* value) { SetFormat(value); return *this;}
94
96
99 inline const Aws::Utils::DateTime& GetLastReferencedTime() const{ return m_lastReferencedTime; }
100 inline bool LastReferencedTimeHasBeenSet() const { return m_lastReferencedTimeHasBeenSet; }
101 inline void SetLastReferencedTime(const Aws::Utils::DateTime& value) { m_lastReferencedTimeHasBeenSet = true; m_lastReferencedTime = value; }
102 inline void SetLastReferencedTime(Aws::Utils::DateTime&& value) { m_lastReferencedTimeHasBeenSet = true; m_lastReferencedTime = std::move(value); }
104 inline DataSetSummary& WithLastReferencedTime(Aws::Utils::DateTime&& value) { SetLastReferencedTime(std::move(value)); return *this;}
106
108
111 inline const Aws::Utils::DateTime& GetLastUpdatedTime() const{ return m_lastUpdatedTime; }
112 inline bool LastUpdatedTimeHasBeenSet() const { return m_lastUpdatedTimeHasBeenSet; }
113 inline void SetLastUpdatedTime(const Aws::Utils::DateTime& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = value; }
114 inline void SetLastUpdatedTime(Aws::Utils::DateTime&& value) { m_lastUpdatedTimeHasBeenSet = true; m_lastUpdatedTime = std::move(value); }
115 inline DataSetSummary& WithLastUpdatedTime(const Aws::Utils::DateTime& value) { SetLastUpdatedTime(value); return *this;}
116 inline DataSetSummary& WithLastUpdatedTime(Aws::Utils::DateTime&& value) { SetLastUpdatedTime(std::move(value)); return *this;}
118 private:
119
120 Aws::Utils::DateTime m_creationTime;
121 bool m_creationTimeHasBeenSet = false;
122
123 Aws::String m_dataSetName;
124 bool m_dataSetNameHasBeenSet = false;
125
126 Aws::String m_dataSetOrg;
127 bool m_dataSetOrgHasBeenSet = false;
128
129 Aws::String m_format;
130 bool m_formatHasBeenSet = false;
131
132 Aws::Utils::DateTime m_lastReferencedTime;
133 bool m_lastReferencedTimeHasBeenSet = false;
134
135 Aws::Utils::DateTime m_lastUpdatedTime;
136 bool m_lastUpdatedTimeHasBeenSet = false;
137 };
138
139} // namespace Model
140} // namespace MainframeModernization
141} // namespace Aws
void SetCreationTime(Aws::Utils::DateTime &&value)
DataSetSummary & WithLastUpdatedTime(Aws::Utils::DateTime &&value)
DataSetSummary & WithLastReferencedTime(Aws::Utils::DateTime &&value)
AWS_MAINFRAMEMODERNIZATION_API DataSetSummary()
DataSetSummary & WithDataSetOrg(const Aws::String &value)
AWS_MAINFRAMEMODERNIZATION_API DataSetSummary(Aws::Utils::Json::JsonView jsonValue)
DataSetSummary & WithDataSetOrg(const char *value)
const Aws::Utils::DateTime & GetCreationTime() const
DataSetSummary & WithCreationTime(Aws::Utils::DateTime &&value)
AWS_MAINFRAMEMODERNIZATION_API Aws::Utils::Json::JsonValue Jsonize() const
DataSetSummary & WithFormat(const char *value)
const Aws::Utils::DateTime & GetLastUpdatedTime() const
void SetLastReferencedTime(const Aws::Utils::DateTime &value)
DataSetSummary & WithLastUpdatedTime(const Aws::Utils::DateTime &value)
void SetLastUpdatedTime(Aws::Utils::DateTime &&value)
DataSetSummary & WithDataSetName(const char *value)
void SetLastUpdatedTime(const Aws::Utils::DateTime &value)
DataSetSummary & WithFormat(const Aws::String &value)
DataSetSummary & WithDataSetName(Aws::String &&value)
DataSetSummary & WithLastReferencedTime(const Aws::Utils::DateTime &value)
void SetLastReferencedTime(Aws::Utils::DateTime &&value)
DataSetSummary & WithFormat(Aws::String &&value)
void SetCreationTime(const Aws::Utils::DateTime &value)
AWS_MAINFRAMEMODERNIZATION_API DataSetSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Utils::DateTime & GetLastReferencedTime() const
DataSetSummary & WithDataSetName(const Aws::String &value)
DataSetSummary & WithDataSetOrg(Aws::String &&value)
DataSetSummary & WithCreationTime(const Aws::Utils::DateTime &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue