AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetInterpolatedAssetPropertyValuesRequest.h
1
6#pragma once
7#include <aws/iotsitewise/IoTSiteWise_EXPORTS.h>
8#include <aws/iotsitewise/IoTSiteWiseRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/iotsitewise/model/Quality.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace IoTSiteWise
20{
21namespace Model
22{
23
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetInterpolatedAssetPropertyValues"; }
36
37 AWS_IOTSITEWISE_API Aws::String SerializePayload() const override;
38
39 AWS_IOTSITEWISE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetAssetId() const{ return m_assetId; }
47 inline bool AssetIdHasBeenSet() const { return m_assetIdHasBeenSet; }
48 inline void SetAssetId(const Aws::String& value) { m_assetIdHasBeenSet = true; m_assetId = value; }
49 inline void SetAssetId(Aws::String&& value) { m_assetIdHasBeenSet = true; m_assetId = std::move(value); }
50 inline void SetAssetId(const char* value) { m_assetIdHasBeenSet = true; m_assetId.assign(value); }
51 inline GetInterpolatedAssetPropertyValuesRequest& WithAssetId(const Aws::String& value) { SetAssetId(value); return *this;}
52 inline GetInterpolatedAssetPropertyValuesRequest& WithAssetId(Aws::String&& value) { SetAssetId(std::move(value)); return *this;}
53 inline GetInterpolatedAssetPropertyValuesRequest& WithAssetId(const char* value) { SetAssetId(value); return *this;}
55
57
60 inline const Aws::String& GetPropertyId() const{ return m_propertyId; }
61 inline bool PropertyIdHasBeenSet() const { return m_propertyIdHasBeenSet; }
62 inline void SetPropertyId(const Aws::String& value) { m_propertyIdHasBeenSet = true; m_propertyId = value; }
63 inline void SetPropertyId(Aws::String&& value) { m_propertyIdHasBeenSet = true; m_propertyId = std::move(value); }
64 inline void SetPropertyId(const char* value) { m_propertyIdHasBeenSet = true; m_propertyId.assign(value); }
66 inline GetInterpolatedAssetPropertyValuesRequest& WithPropertyId(Aws::String&& value) { SetPropertyId(std::move(value)); return *this;}
67 inline GetInterpolatedAssetPropertyValuesRequest& WithPropertyId(const char* value) { SetPropertyId(value); return *this;}
69
71
79 inline const Aws::String& GetPropertyAlias() const{ return m_propertyAlias; }
80 inline bool PropertyAliasHasBeenSet() const { return m_propertyAliasHasBeenSet; }
81 inline void SetPropertyAlias(const Aws::String& value) { m_propertyAliasHasBeenSet = true; m_propertyAlias = value; }
82 inline void SetPropertyAlias(Aws::String&& value) { m_propertyAliasHasBeenSet = true; m_propertyAlias = std::move(value); }
83 inline void SetPropertyAlias(const char* value) { m_propertyAliasHasBeenSet = true; m_propertyAlias.assign(value); }
86 inline GetInterpolatedAssetPropertyValuesRequest& WithPropertyAlias(const char* value) { SetPropertyAlias(value); return *this;}
88
90
94 inline long long GetStartTimeInSeconds() const{ return m_startTimeInSeconds; }
95 inline bool StartTimeInSecondsHasBeenSet() const { return m_startTimeInSecondsHasBeenSet; }
96 inline void SetStartTimeInSeconds(long long value) { m_startTimeInSecondsHasBeenSet = true; m_startTimeInSeconds = value; }
99
101
104 inline int GetStartTimeOffsetInNanos() const{ return m_startTimeOffsetInNanos; }
105 inline bool StartTimeOffsetInNanosHasBeenSet() const { return m_startTimeOffsetInNanosHasBeenSet; }
106 inline void SetStartTimeOffsetInNanos(int value) { m_startTimeOffsetInNanosHasBeenSet = true; m_startTimeOffsetInNanos = value; }
109
111
115 inline long long GetEndTimeInSeconds() const{ return m_endTimeInSeconds; }
116 inline bool EndTimeInSecondsHasBeenSet() const { return m_endTimeInSecondsHasBeenSet; }
117 inline void SetEndTimeInSeconds(long long value) { m_endTimeInSecondsHasBeenSet = true; m_endTimeInSeconds = value; }
120
122
125 inline int GetEndTimeOffsetInNanos() const{ return m_endTimeOffsetInNanos; }
126 inline bool EndTimeOffsetInNanosHasBeenSet() const { return m_endTimeOffsetInNanosHasBeenSet; }
127 inline void SetEndTimeOffsetInNanos(int value) { m_endTimeOffsetInNanosHasBeenSet = true; m_endTimeOffsetInNanos = value; }
130
132
137 inline const Quality& GetQuality() const{ return m_quality; }
138 inline bool QualityHasBeenSet() const { return m_qualityHasBeenSet; }
139 inline void SetQuality(const Quality& value) { m_qualityHasBeenSet = true; m_quality = value; }
140 inline void SetQuality(Quality&& value) { m_qualityHasBeenSet = true; m_quality = std::move(value); }
141 inline GetInterpolatedAssetPropertyValuesRequest& WithQuality(const Quality& value) { SetQuality(value); return *this;}
142 inline GetInterpolatedAssetPropertyValuesRequest& WithQuality(Quality&& value) { SetQuality(std::move(value)); return *this;}
144
146
150 inline long long GetIntervalInSeconds() const{ return m_intervalInSeconds; }
151 inline bool IntervalInSecondsHasBeenSet() const { return m_intervalInSecondsHasBeenSet; }
152 inline void SetIntervalInSeconds(long long value) { m_intervalInSecondsHasBeenSet = true; m_intervalInSeconds = value; }
155
157
160 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
161 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
162 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
163 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
164 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
166 inline GetInterpolatedAssetPropertyValuesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
167 inline GetInterpolatedAssetPropertyValuesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
169
171
175 inline int GetMaxResults() const{ return m_maxResults; }
176 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
177 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
180
182
203 inline const Aws::String& GetType() const{ return m_type; }
204 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
205 inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; }
206 inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); }
207 inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); }
208 inline GetInterpolatedAssetPropertyValuesRequest& WithType(const Aws::String& value) { SetType(value); return *this;}
209 inline GetInterpolatedAssetPropertyValuesRequest& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;}
210 inline GetInterpolatedAssetPropertyValuesRequest& WithType(const char* value) { SetType(value); return *this;}
212
214
233 inline long long GetIntervalWindowInSeconds() const{ return m_intervalWindowInSeconds; }
234 inline bool IntervalWindowInSecondsHasBeenSet() const { return m_intervalWindowInSecondsHasBeenSet; }
235 inline void SetIntervalWindowInSeconds(long long value) { m_intervalWindowInSecondsHasBeenSet = true; m_intervalWindowInSeconds = value; }
238 private:
239
240 Aws::String m_assetId;
241 bool m_assetIdHasBeenSet = false;
242
243 Aws::String m_propertyId;
244 bool m_propertyIdHasBeenSet = false;
245
246 Aws::String m_propertyAlias;
247 bool m_propertyAliasHasBeenSet = false;
248
249 long long m_startTimeInSeconds;
250 bool m_startTimeInSecondsHasBeenSet = false;
251
252 int m_startTimeOffsetInNanos;
253 bool m_startTimeOffsetInNanosHasBeenSet = false;
254
255 long long m_endTimeInSeconds;
256 bool m_endTimeInSecondsHasBeenSet = false;
257
258 int m_endTimeOffsetInNanos;
259 bool m_endTimeOffsetInNanosHasBeenSet = false;
260
261 Quality m_quality;
262 bool m_qualityHasBeenSet = false;
263
264 long long m_intervalInSeconds;
265 bool m_intervalInSecondsHasBeenSet = false;
266
267 Aws::String m_nextToken;
268 bool m_nextTokenHasBeenSet = false;
269
270 int m_maxResults;
271 bool m_maxResultsHasBeenSet = false;
272
273 Aws::String m_type;
274 bool m_typeHasBeenSet = false;
275
276 long long m_intervalWindowInSeconds;
277 bool m_intervalWindowInSecondsHasBeenSet = false;
278 };
279
280} // namespace Model
281} // namespace IoTSiteWise
282} // namespace Aws
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
GetInterpolatedAssetPropertyValuesRequest & WithIntervalInSeconds(long long value)
GetInterpolatedAssetPropertyValuesRequest & WithAssetId(const Aws::String &value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyAlias(const Aws::String &value)
GetInterpolatedAssetPropertyValuesRequest & WithNextToken(const Aws::String &value)
GetInterpolatedAssetPropertyValuesRequest & WithAssetId(const char *value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyAlias(const char *value)
GetInterpolatedAssetPropertyValuesRequest & WithNextToken(const char *value)
GetInterpolatedAssetPropertyValuesRequest & WithType(Aws::String &&value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyId(const Aws::String &value)
GetInterpolatedAssetPropertyValuesRequest & WithType(const Aws::String &value)
GetInterpolatedAssetPropertyValuesRequest & WithAssetId(Aws::String &&value)
GetInterpolatedAssetPropertyValuesRequest & WithIntervalWindowInSeconds(long long value)
GetInterpolatedAssetPropertyValuesRequest & WithQuality(const Quality &value)
AWS_IOTSITEWISE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetInterpolatedAssetPropertyValuesRequest & WithNextToken(Aws::String &&value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyAlias(Aws::String &&value)
GetInterpolatedAssetPropertyValuesRequest & WithType(const char *value)
GetInterpolatedAssetPropertyValuesRequest & WithEndTimeInSeconds(long long value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyId(const char *value)
GetInterpolatedAssetPropertyValuesRequest & WithPropertyId(Aws::String &&value)
GetInterpolatedAssetPropertyValuesRequest & WithStartTimeInSeconds(long long value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String