AWS SDK for C++

AWS SDK for C++ Version 1.11.608

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:
26 AWS_IOTSITEWISE_API BatchGetAssetPropertyAggregatesRequest() = default;
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 template<typename EntriesT = Aws::Vector<BatchGetAssetPropertyAggregatesEntry>>
45 void SetEntries(EntriesT&& value) { m_entriesHasBeenSet = true; m_entries = std::forward<EntriesT>(value); }
46 template<typename EntriesT = Aws::Vector<BatchGetAssetPropertyAggregatesEntry>>
47 BatchGetAssetPropertyAggregatesRequest& WithEntries(EntriesT&& value) { SetEntries(std::forward<EntriesT>(value)); return *this;}
48 template<typename EntriesT = BatchGetAssetPropertyAggregatesEntry>
49 BatchGetAssetPropertyAggregatesRequest& AddEntries(EntriesT&& value) { m_entriesHasBeenSet = true; m_entries.emplace_back(std::forward<EntriesT>(value)); return *this; }
51
53
56 inline const Aws::String& GetNextToken() const { return m_nextToken; }
57 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
58 template<typename NextTokenT = Aws::String>
59 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
60 template<typename NextTokenT = Aws::String>
61 BatchGetAssetPropertyAggregatesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
63
65
72 inline int GetMaxResults() const { return m_maxResults; }
73 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
74 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
75 inline BatchGetAssetPropertyAggregatesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
77 private:
78
80 bool m_entriesHasBeenSet = false;
81
82 Aws::String m_nextToken;
83 bool m_nextTokenHasBeenSet = false;
84
85 int m_maxResults{0};
86 bool m_maxResultsHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace IoTSiteWise
91} // namespace Aws
BatchGetAssetPropertyAggregatesRequest & WithNextToken(NextTokenT &&value)
BatchGetAssetPropertyAggregatesRequest & WithEntries(EntriesT &&value)
BatchGetAssetPropertyAggregatesRequest & AddEntries(EntriesT &&value)
const Aws::Vector< BatchGetAssetPropertyAggregatesEntry > & GetEntries() const
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector