AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeDeviceFleetResult.h
1
6#pragma once
7#include <aws/sagemaker/SageMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/sagemaker/model/EdgeOutputConfig.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace SageMaker
26{
27namespace Model
28{
30 {
31 public:
32 AWS_SAGEMAKER_API DescribeDeviceFleetResult() = default;
35
36
38
41 inline const Aws::String& GetDeviceFleetName() const { return m_deviceFleetName; }
42 template<typename DeviceFleetNameT = Aws::String>
43 void SetDeviceFleetName(DeviceFleetNameT&& value) { m_deviceFleetNameHasBeenSet = true; m_deviceFleetName = std::forward<DeviceFleetNameT>(value); }
44 template<typename DeviceFleetNameT = Aws::String>
45 DescribeDeviceFleetResult& WithDeviceFleetName(DeviceFleetNameT&& value) { SetDeviceFleetName(std::forward<DeviceFleetNameT>(value)); return *this;}
47
49
52 inline const Aws::String& GetDeviceFleetArn() const { return m_deviceFleetArn; }
53 template<typename DeviceFleetArnT = Aws::String>
54 void SetDeviceFleetArn(DeviceFleetArnT&& value) { m_deviceFleetArnHasBeenSet = true; m_deviceFleetArn = std::forward<DeviceFleetArnT>(value); }
55 template<typename DeviceFleetArnT = Aws::String>
56 DescribeDeviceFleetResult& WithDeviceFleetArn(DeviceFleetArnT&& value) { SetDeviceFleetArn(std::forward<DeviceFleetArnT>(value)); return *this;}
58
60
63 inline const EdgeOutputConfig& GetOutputConfig() const { return m_outputConfig; }
64 template<typename OutputConfigT = EdgeOutputConfig>
65 void SetOutputConfig(OutputConfigT&& value) { m_outputConfigHasBeenSet = true; m_outputConfig = std::forward<OutputConfigT>(value); }
66 template<typename OutputConfigT = EdgeOutputConfig>
67 DescribeDeviceFleetResult& WithOutputConfig(OutputConfigT&& value) { SetOutputConfig(std::forward<OutputConfigT>(value)); return *this;}
69
71
74 inline const Aws::String& GetDescription() const { return m_description; }
75 template<typename DescriptionT = Aws::String>
76 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
77 template<typename DescriptionT = Aws::String>
78 DescribeDeviceFleetResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
80
82
85 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
86 template<typename CreationTimeT = Aws::Utils::DateTime>
87 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
88 template<typename CreationTimeT = Aws::Utils::DateTime>
89 DescribeDeviceFleetResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
91
93
96 inline const Aws::Utils::DateTime& GetLastModifiedTime() const { return m_lastModifiedTime; }
97 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
98 void SetLastModifiedTime(LastModifiedTimeT&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::forward<LastModifiedTimeT>(value); }
99 template<typename LastModifiedTimeT = Aws::Utils::DateTime>
100 DescribeDeviceFleetResult& WithLastModifiedTime(LastModifiedTimeT&& value) { SetLastModifiedTime(std::forward<LastModifiedTimeT>(value)); return *this;}
102
104
108 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
109 template<typename RoleArnT = Aws::String>
110 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
111 template<typename RoleArnT = Aws::String>
112 DescribeDeviceFleetResult& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
114
116
120 inline const Aws::String& GetIotRoleAlias() const { return m_iotRoleAlias; }
121 template<typename IotRoleAliasT = Aws::String>
122 void SetIotRoleAlias(IotRoleAliasT&& value) { m_iotRoleAliasHasBeenSet = true; m_iotRoleAlias = std::forward<IotRoleAliasT>(value); }
123 template<typename IotRoleAliasT = Aws::String>
124 DescribeDeviceFleetResult& WithIotRoleAlias(IotRoleAliasT&& value) { SetIotRoleAlias(std::forward<IotRoleAliasT>(value)); return *this;}
126
128
129 inline const Aws::String& GetRequestId() const { return m_requestId; }
130 template<typename RequestIdT = Aws::String>
131 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
132 template<typename RequestIdT = Aws::String>
133 DescribeDeviceFleetResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
135 private:
136
137 Aws::String m_deviceFleetName;
138 bool m_deviceFleetNameHasBeenSet = false;
139
140 Aws::String m_deviceFleetArn;
141 bool m_deviceFleetArnHasBeenSet = false;
142
143 EdgeOutputConfig m_outputConfig;
144 bool m_outputConfigHasBeenSet = false;
145
146 Aws::String m_description;
147 bool m_descriptionHasBeenSet = false;
148
149 Aws::Utils::DateTime m_creationTime{};
150 bool m_creationTimeHasBeenSet = false;
151
152 Aws::Utils::DateTime m_lastModifiedTime{};
153 bool m_lastModifiedTimeHasBeenSet = false;
154
155 Aws::String m_roleArn;
156 bool m_roleArnHasBeenSet = false;
157
158 Aws::String m_iotRoleAlias;
159 bool m_iotRoleAliasHasBeenSet = false;
160
161 Aws::String m_requestId;
162 bool m_requestIdHasBeenSet = false;
163 };
164
165} // namespace Model
166} // namespace SageMaker
167} // 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