AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
KxDataviewActiveVersion.h
1
6#pragma once
7#include <aws/finspace/Finspace_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/finspace/model/KxDataviewSegmentConfiguration.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace finspace
25{
26namespace Model
27{
28
36 {
37 public:
38 AWS_FINSPACE_API KxDataviewActiveVersion();
41 AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetChangesetId() const{ return m_changesetId; }
49 inline bool ChangesetIdHasBeenSet() const { return m_changesetIdHasBeenSet; }
50 inline void SetChangesetId(const Aws::String& value) { m_changesetIdHasBeenSet = true; m_changesetId = value; }
51 inline void SetChangesetId(Aws::String&& value) { m_changesetIdHasBeenSet = true; m_changesetId = std::move(value); }
52 inline void SetChangesetId(const char* value) { m_changesetIdHasBeenSet = true; m_changesetId.assign(value); }
53 inline KxDataviewActiveVersion& WithChangesetId(const Aws::String& value) { SetChangesetId(value); return *this;}
54 inline KxDataviewActiveVersion& WithChangesetId(Aws::String&& value) { SetChangesetId(std::move(value)); return *this;}
55 inline KxDataviewActiveVersion& WithChangesetId(const char* value) { SetChangesetId(value); return *this;}
57
59
66 inline const Aws::Vector<KxDataviewSegmentConfiguration>& GetSegmentConfigurations() const{ return m_segmentConfigurations; }
67 inline bool SegmentConfigurationsHasBeenSet() const { return m_segmentConfigurationsHasBeenSet; }
68 inline void SetSegmentConfigurations(const Aws::Vector<KxDataviewSegmentConfiguration>& value) { m_segmentConfigurationsHasBeenSet = true; m_segmentConfigurations = value; }
69 inline void SetSegmentConfigurations(Aws::Vector<KxDataviewSegmentConfiguration>&& value) { m_segmentConfigurationsHasBeenSet = true; m_segmentConfigurations = std::move(value); }
72 inline KxDataviewActiveVersion& AddSegmentConfigurations(const KxDataviewSegmentConfiguration& value) { m_segmentConfigurationsHasBeenSet = true; m_segmentConfigurations.push_back(value); return *this; }
73 inline KxDataviewActiveVersion& AddSegmentConfigurations(KxDataviewSegmentConfiguration&& value) { m_segmentConfigurationsHasBeenSet = true; m_segmentConfigurations.push_back(std::move(value)); return *this; }
75
77
80 inline const Aws::Vector<Aws::String>& GetAttachedClusters() const{ return m_attachedClusters; }
81 inline bool AttachedClustersHasBeenSet() const { return m_attachedClustersHasBeenSet; }
82 inline void SetAttachedClusters(const Aws::Vector<Aws::String>& value) { m_attachedClustersHasBeenSet = true; m_attachedClusters = value; }
83 inline void SetAttachedClusters(Aws::Vector<Aws::String>&& value) { m_attachedClustersHasBeenSet = true; m_attachedClusters = std::move(value); }
86 inline KxDataviewActiveVersion& AddAttachedClusters(const Aws::String& value) { m_attachedClustersHasBeenSet = true; m_attachedClusters.push_back(value); return *this; }
87 inline KxDataviewActiveVersion& AddAttachedClusters(Aws::String&& value) { m_attachedClustersHasBeenSet = true; m_attachedClusters.push_back(std::move(value)); return *this; }
88 inline KxDataviewActiveVersion& AddAttachedClusters(const char* value) { m_attachedClustersHasBeenSet = true; m_attachedClusters.push_back(value); return *this; }
90
92
97 inline const Aws::Utils::DateTime& GetCreatedTimestamp() const{ return m_createdTimestamp; }
98 inline bool CreatedTimestampHasBeenSet() const { return m_createdTimestampHasBeenSet; }
99 inline void SetCreatedTimestamp(const Aws::Utils::DateTime& value) { m_createdTimestampHasBeenSet = true; m_createdTimestamp = value; }
100 inline void SetCreatedTimestamp(Aws::Utils::DateTime&& value) { m_createdTimestampHasBeenSet = true; m_createdTimestamp = std::move(value); }
104
106
109 inline const Aws::String& GetVersionId() const{ return m_versionId; }
110 inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; }
111 inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; }
112 inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); }
113 inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); }
114 inline KxDataviewActiveVersion& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;}
115 inline KxDataviewActiveVersion& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;}
116 inline KxDataviewActiveVersion& WithVersionId(const char* value) { SetVersionId(value); return *this;}
118 private:
119
120 Aws::String m_changesetId;
121 bool m_changesetIdHasBeenSet = false;
122
123 Aws::Vector<KxDataviewSegmentConfiguration> m_segmentConfigurations;
124 bool m_segmentConfigurationsHasBeenSet = false;
125
126 Aws::Vector<Aws::String> m_attachedClusters;
127 bool m_attachedClustersHasBeenSet = false;
128
129 Aws::Utils::DateTime m_createdTimestamp;
130 bool m_createdTimestampHasBeenSet = false;
131
132 Aws::String m_versionId;
133 bool m_versionIdHasBeenSet = false;
134 };
135
136} // namespace Model
137} // namespace finspace
138} // namespace Aws
KxDataviewActiveVersion & WithChangesetId(const char *value)
KxDataviewActiveVersion & WithVersionId(const Aws::String &value)
KxDataviewActiveVersion & AddSegmentConfigurations(const KxDataviewSegmentConfiguration &value)
const Aws::Utils::DateTime & GetCreatedTimestamp() const
KxDataviewActiveVersion & WithCreatedTimestamp(Aws::Utils::DateTime &&value)
AWS_FINSPACE_API KxDataviewActiveVersion & operator=(Aws::Utils::Json::JsonView jsonValue)
KxDataviewActiveVersion & WithVersionId(const char *value)
KxDataviewActiveVersion & AddAttachedClusters(Aws::String &&value)
KxDataviewActiveVersion & WithAttachedClusters(Aws::Vector< Aws::String > &&value)
AWS_FINSPACE_API Aws::Utils::Json::JsonValue Jsonize() const
KxDataviewActiveVersion & AddSegmentConfigurations(KxDataviewSegmentConfiguration &&value)
void SetSegmentConfigurations(Aws::Vector< KxDataviewSegmentConfiguration > &&value)
KxDataviewActiveVersion & AddAttachedClusters(const Aws::String &value)
KxDataviewActiveVersion & WithAttachedClusters(const Aws::Vector< Aws::String > &value)
const Aws::Vector< KxDataviewSegmentConfiguration > & GetSegmentConfigurations() const
KxDataviewActiveVersion & WithVersionId(Aws::String &&value)
KxDataviewActiveVersion & WithChangesetId(Aws::String &&value)
KxDataviewActiveVersion & WithCreatedTimestamp(const Aws::Utils::DateTime &value)
KxDataviewActiveVersion & WithSegmentConfigurations(Aws::Vector< KxDataviewSegmentConfiguration > &&value)
void SetSegmentConfigurations(const Aws::Vector< KxDataviewSegmentConfiguration > &value)
KxDataviewActiveVersion & WithChangesetId(const Aws::String &value)
void SetAttachedClusters(const Aws::Vector< Aws::String > &value)
KxDataviewActiveVersion & WithSegmentConfigurations(const Aws::Vector< KxDataviewSegmentConfiguration > &value)
void SetCreatedTimestamp(const Aws::Utils::DateTime &value)
void SetAttachedClusters(Aws::Vector< Aws::String > &&value)
void SetCreatedTimestamp(Aws::Utils::DateTime &&value)
KxDataviewActiveVersion & AddAttachedClusters(const char *value)
AWS_FINSPACE_API KxDataviewActiveVersion(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetAttachedClusters() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue