AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
DescribeDeviceFleetResult.h
1
6#pragma once
7#include <aws/core/http/HttpResponse.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sagemaker/SageMaker_EXPORTS.h>
11#include <aws/sagemaker/model/EdgeOutputConfig.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Json {
21class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace SageMaker {
25namespace Model {
27 public:
28 AWS_SAGEMAKER_API DescribeDeviceFleetResult() = default;
31
33
36 inline const Aws::String& GetDeviceFleetName() const { return m_deviceFleetName; }
37 template <typename DeviceFleetNameT = Aws::String>
38 void SetDeviceFleetName(DeviceFleetNameT&& value) {
39 m_deviceFleetNameHasBeenSet = true;
40 m_deviceFleetName = std::forward<DeviceFleetNameT>(value);
41 }
42 template <typename DeviceFleetNameT = Aws::String>
44 SetDeviceFleetName(std::forward<DeviceFleetNameT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetDeviceFleetArn() const { return m_deviceFleetArn; }
54 template <typename DeviceFleetArnT = Aws::String>
55 void SetDeviceFleetArn(DeviceFleetArnT&& value) {
56 m_deviceFleetArnHasBeenSet = true;
57 m_deviceFleetArn = std::forward<DeviceFleetArnT>(value);
58 }
59 template <typename DeviceFleetArnT = Aws::String>
61 SetDeviceFleetArn(std::forward<DeviceFleetArnT>(value));
62 return *this;
63 }
65
67
70 inline const EdgeOutputConfig& GetOutputConfig() const { return m_outputConfig; }
71 template <typename OutputConfigT = EdgeOutputConfig>
72 void SetOutputConfig(OutputConfigT&& value) {
73 m_outputConfigHasBeenSet = true;
74 m_outputConfig = std::forward<OutputConfigT>(value);
75 }
76 template <typename OutputConfigT = EdgeOutputConfig>
78 SetOutputConfig(std::forward<OutputConfigT>(value));
79 return *this;
80 }
82
84
87 inline const Aws::String& GetDescription() const { return m_description; }
88 template <typename DescriptionT = Aws::String>
89 void SetDescription(DescriptionT&& value) {
90 m_descriptionHasBeenSet = true;
91 m_description = std::forward<DescriptionT>(value);
92 }
93 template <typename DescriptionT = Aws::String>
95 SetDescription(std::forward<DescriptionT>(value));
96 return *this;
97 }
99
101
104 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
105 template <typename CreationTimeT = Aws::Utils::DateTime>
106 void SetCreationTime(CreationTimeT&& value) {
107 m_creationTimeHasBeenSet = true;
108 m_creationTime = std::forward<CreationTimeT>(value);
109 }
110 template <typename CreationTimeT = Aws::Utils::DateTime>
112 SetCreationTime(std::forward<CreationTimeT>(value));
113 return *this;
114 }
116
118
121 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
122 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
123 void SetLastModifiedTime(LastModifiedTimeT&& value) {
124 m_lastModifiedTimeHasBeenSet = true;
125 m_lastModifiedTime = std::forward<LastModifiedTimeT>(value);
126 }
127 template <typename LastModifiedTimeT = Aws::Utils::DateTime>
129 SetLastModifiedTime(std::forward<LastModifiedTimeT>(value));
130 return *this;
131 }
133
135
139 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
140 template <typename RoleArnT = Aws::String>
141 void SetRoleArn(RoleArnT&& value) {
142 m_roleArnHasBeenSet = true;
143 m_roleArn = std::forward<RoleArnT>(value);
144 }
145 template <typename RoleArnT = Aws::String>
147 SetRoleArn(std::forward<RoleArnT>(value));
148 return *this;
149 }
151
153
157 inline const Aws::String& GetIotRoleAlias() const { return m_iotRoleAlias; }
158 template <typename IotRoleAliasT = Aws::String>
159 void SetIotRoleAlias(IotRoleAliasT&& value) {
160 m_iotRoleAliasHasBeenSet = true;
161 m_iotRoleAlias = std::forward<IotRoleAliasT>(value);
162 }
163 template <typename IotRoleAliasT = Aws::String>
165 SetIotRoleAlias(std::forward<IotRoleAliasT>(value));
166 return *this;
167 }
169
171
172 inline const Aws::String& GetRequestId() const { return m_requestId; }
173 template <typename RequestIdT = Aws::String>
174 void SetRequestId(RequestIdT&& value) {
175 m_requestIdHasBeenSet = true;
176 m_requestId = std::forward<RequestIdT>(value);
177 }
178 template <typename RequestIdT = Aws::String>
180 SetRequestId(std::forward<RequestIdT>(value));
181 return *this;
182 }
184 inline Aws::Http::HttpResponseCode GetHttpResponseCode() const { return m_HttpResponseCode; }
185
186 private:
187 Aws::String m_deviceFleetName;
188
189 Aws::String m_deviceFleetArn;
190
191 EdgeOutputConfig m_outputConfig;
192
193 Aws::String m_description;
194
195 Aws::Utils::DateTime m_creationTime{};
196
197 Aws::Utils::DateTime m_lastModifiedTime{};
198
199 Aws::String m_roleArn;
200
201 Aws::String m_iotRoleAlias;
202
203 Aws::String m_requestId;
204 Aws::Http::HttpResponseCode m_HttpResponseCode;
205 bool m_deviceFleetNameHasBeenSet = false;
206 bool m_deviceFleetArnHasBeenSet = false;
207 bool m_outputConfigHasBeenSet = false;
208 bool m_descriptionHasBeenSet = false;
209 bool m_creationTimeHasBeenSet = false;
210 bool m_lastModifiedTimeHasBeenSet = false;
211 bool m_roleArnHasBeenSet = false;
212 bool m_iotRoleAliasHasBeenSet = false;
213 bool m_requestIdHasBeenSet = false;
214};
215
216} // namespace Model
217} // namespace SageMaker
218} // namespace Aws
const Aws::Utils::DateTime & GetLastModifiedTime() const
DescribeDeviceFleetResult & WithDescription(DescriptionT &&value)
DescribeDeviceFleetResult & WithRequestId(RequestIdT &&value)
DescribeDeviceFleetResult & WithRoleArn(RoleArnT &&value)
DescribeDeviceFleetResult & WithOutputConfig(OutputConfigT &&value)
AWS_SAGEMAKER_API DescribeDeviceFleetResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeDeviceFleetResult & WithDeviceFleetArn(DeviceFleetArnT &&value)
DescribeDeviceFleetResult & WithCreationTime(CreationTimeT &&value)
DescribeDeviceFleetResult & WithIotRoleAlias(IotRoleAliasT &&value)
DescribeDeviceFleetResult & WithDeviceFleetName(DeviceFleetNameT &&value)
AWS_SAGEMAKER_API DescribeDeviceFleetResult()=default
AWS_SAGEMAKER_API DescribeDeviceFleetResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeDeviceFleetResult & WithLastModifiedTime(LastModifiedTimeT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue