AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchGetAssetPropertyAggregatesRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/iotsitewise/model/BatchGetAssetPropertyAggregatesEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace IoTSiteWise
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "BatchGetAssetPropertyAggregates"; }
33
34 AWS_IOTSITEWISE_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::Vector<BatchGetAssetPropertyAggregatesEntry>& GetEntries() const{ return m_entries; }
43 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
44 inline void SetEntries(const Aws::Vector<BatchGetAssetPropertyAggregatesEntry>& value) { m_entriesHasBeenSet = true; m_entries = value; }
45 inline void SetEntries(Aws::Vector<BatchGetAssetPropertyAggregatesEntry>&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); }
48 inline BatchGetAssetPropertyAggregatesRequest& AddEntries(const BatchGetAssetPropertyAggregatesEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; }
49 inline BatchGetAssetPropertyAggregatesRequest& AddEntries(BatchGetAssetPropertyAggregatesEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; }
51
53
56 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
57 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
58 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
59 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
60 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
62 inline BatchGetAssetPropertyAggregatesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
63 inline BatchGetAssetPropertyAggregatesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
65
67
74 inline int GetMaxResults() const{ return m_maxResults; }
75 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
76 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
77 inline BatchGetAssetPropertyAggregatesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
79 private:
80
82 bool m_entriesHasBeenSet = false;
83
84 Aws::String m_nextToken;
85 bool m_nextTokenHasBeenSet = false;
86
87 int m_maxResults;
88 bool m_maxResultsHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace IoTSiteWise
93} // namespace Aws
void SetEntries(Aws::Vector< BatchGetAssetPropertyAggregatesEntry > &&value)
void SetEntries(const Aws::Vector< BatchGetAssetPropertyAggregatesEntry > &value)
BatchGetAssetPropertyAggregatesRequest & WithNextToken(Aws::String &&value)
BatchGetAssetPropertyAggregatesRequest & WithEntries(Aws::Vector< BatchGetAssetPropertyAggregatesEntry > &&value)
const Aws::Vector< BatchGetAssetPropertyAggregatesEntry > & GetEntries() const
BatchGetAssetPropertyAggregatesRequest & WithNextToken(const char *value)
BatchGetAssetPropertyAggregatesRequest & WithEntries(const Aws::Vector< BatchGetAssetPropertyAggregatesEntry > &value)
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
BatchGetAssetPropertyAggregatesRequest & WithNextToken(const Aws::String &value)
BatchGetAssetPropertyAggregatesRequest & AddEntries(BatchGetAssetPropertyAggregatesEntry &&value)
BatchGetAssetPropertyAggregatesRequest & AddEntries(const BatchGetAssetPropertyAggregatesEntry &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector