AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
FeatureGroupSummary.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/SageMaker_EXPORTS.h>
10#include <aws/sagemaker/model/FeatureGroupStatus.h>
11#include <aws/sagemaker/model/OfflineStoreStatus.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Utils {
17namespace Json {
18class JsonValue;
19class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace SageMaker {
23namespace Model {
24
33 public:
34 AWS_SAGEMAKER_API FeatureGroupSummary() = default;
35 AWS_SAGEMAKER_API FeatureGroupSummary(Aws::Utils::Json::JsonView jsonValue);
37 AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
38
40
43 inline const Aws::String& GetFeatureGroupName() const { return m_featureGroupName; }
44 inline bool FeatureGroupNameHasBeenSet() const { return m_featureGroupNameHasBeenSet; }
45 template <typename FeatureGroupNameT = Aws::String>
46 void SetFeatureGroupName(FeatureGroupNameT&& value) {
47 m_featureGroupNameHasBeenSet = true;
48 m_featureGroupName = std::forward<FeatureGroupNameT>(value);
49 }
50 template <typename FeatureGroupNameT = Aws::String>
51 FeatureGroupSummary& WithFeatureGroupName(FeatureGroupNameT&& value) {
52 SetFeatureGroupName(std::forward<FeatureGroupNameT>(value));
53 return *this;
54 }
56
58
61 inline const Aws::String& GetFeatureGroupArn() const { return m_featureGroupArn; }
62 inline bool FeatureGroupArnHasBeenSet() const { return m_featureGroupArnHasBeenSet; }
63 template <typename FeatureGroupArnT = Aws::String>
64 void SetFeatureGroupArn(FeatureGroupArnT&& value) {
65 m_featureGroupArnHasBeenSet = true;
66 m_featureGroupArn = std::forward<FeatureGroupArnT>(value);
67 }
68 template <typename FeatureGroupArnT = Aws::String>
69 FeatureGroupSummary& WithFeatureGroupArn(FeatureGroupArnT&& value) {
70 SetFeatureGroupArn(std::forward<FeatureGroupArnT>(value));
71 return *this;
72 }
74
76
80 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
81 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
82 template <typename CreationTimeT = Aws::Utils::DateTime>
83 void SetCreationTime(CreationTimeT&& value) {
84 m_creationTimeHasBeenSet = true;
85 m_creationTime = std::forward<CreationTimeT>(value);
86 }
87 template <typename CreationTimeT = Aws::Utils::DateTime>
88 FeatureGroupSummary& WithCreationTime(CreationTimeT&& value) {
89 SetCreationTime(std::forward<CreationTimeT>(value));
90 return *this;
91 }
93
95
100 inline FeatureGroupStatus GetFeatureGroupStatus() const { return m_featureGroupStatus; }
101 inline bool FeatureGroupStatusHasBeenSet() const { return m_featureGroupStatusHasBeenSet; }
103 m_featureGroupStatusHasBeenSet = true;
104 m_featureGroupStatus = value;
105 }
108 return *this;
109 }
111
113
117 inline const OfflineStoreStatus& GetOfflineStoreStatus() const { return m_offlineStoreStatus; }
118 inline bool OfflineStoreStatusHasBeenSet() const { return m_offlineStoreStatusHasBeenSet; }
119 template <typename OfflineStoreStatusT = OfflineStoreStatus>
120 void SetOfflineStoreStatus(OfflineStoreStatusT&& value) {
121 m_offlineStoreStatusHasBeenSet = true;
122 m_offlineStoreStatus = std::forward<OfflineStoreStatusT>(value);
123 }
124 template <typename OfflineStoreStatusT = OfflineStoreStatus>
125 FeatureGroupSummary& WithOfflineStoreStatus(OfflineStoreStatusT&& value) {
126 SetOfflineStoreStatus(std::forward<OfflineStoreStatusT>(value));
127 return *this;
128 }
130 private:
131 Aws::String m_featureGroupName;
132
133 Aws::String m_featureGroupArn;
134
135 Aws::Utils::DateTime m_creationTime{};
136
138
139 OfflineStoreStatus m_offlineStoreStatus;
140 bool m_featureGroupNameHasBeenSet = false;
141 bool m_featureGroupArnHasBeenSet = false;
142 bool m_creationTimeHasBeenSet = false;
143 bool m_featureGroupStatusHasBeenSet = false;
144 bool m_offlineStoreStatusHasBeenSet = false;
145};
146
147} // namespace Model
148} // namespace SageMaker
149} // namespace Aws
const Aws::Utils::DateTime & GetCreationTime() const
AWS_SAGEMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetFeatureGroupName() const
FeatureGroupSummary & WithFeatureGroupArn(FeatureGroupArnT &&value)
FeatureGroupSummary & WithFeatureGroupName(FeatureGroupNameT &&value)
AWS_SAGEMAKER_API FeatureGroupSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
FeatureGroupSummary & WithFeatureGroupStatus(FeatureGroupStatus value)
FeatureGroupSummary & WithCreationTime(CreationTimeT &&value)
void SetOfflineStoreStatus(OfflineStoreStatusT &&value)
void SetFeatureGroupName(FeatureGroupNameT &&value)
FeatureGroupSummary & WithOfflineStoreStatus(OfflineStoreStatusT &&value)
void SetFeatureGroupStatus(FeatureGroupStatus value)
void SetFeatureGroupArn(FeatureGroupArnT &&value)
AWS_SAGEMAKER_API FeatureGroupSummary()=default
AWS_SAGEMAKER_API FeatureGroupSummary(Aws::Utils::Json::JsonView jsonValue)
const OfflineStoreStatus & GetOfflineStoreStatus() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue