AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
BatchGetAssetPropertyValueRequest.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/BatchGetAssetPropertyValueEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace IoTSiteWise
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_IOTSITEWISE_API BatchGetAssetPropertyValueRequest() = 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 "BatchGetAssetPropertyValue"; }
33
34 AWS_IOTSITEWISE_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::Vector<BatchGetAssetPropertyValueEntry>& GetEntries() const { return m_entries; }
43 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
44 template<typename EntriesT = Aws::Vector<BatchGetAssetPropertyValueEntry>>
45 void SetEntries(EntriesT&& value) { m_entriesHasBeenSet = true; m_entries = std::forward<EntriesT>(value); }
46 template<typename EntriesT = Aws::Vector<BatchGetAssetPropertyValueEntry>>
47 BatchGetAssetPropertyValueRequest& WithEntries(EntriesT&& value) { SetEntries(std::forward<EntriesT>(value)); return *this;}
48 template<typename EntriesT = BatchGetAssetPropertyValueEntry>
49 BatchGetAssetPropertyValueRequest& 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 BatchGetAssetPropertyValueRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
63 private:
64
66 bool m_entriesHasBeenSet = false;
67
68 Aws::String m_nextToken;
69 bool m_nextTokenHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace IoTSiteWise
74} // namespace Aws
const Aws::Vector< BatchGetAssetPropertyValueEntry > & GetEntries() const
BatchGetAssetPropertyValueRequest & AddEntries(EntriesT &&value)
AWS_IOTSITEWISE_API BatchGetAssetPropertyValueRequest()=default
BatchGetAssetPropertyValueRequest & WithEntries(EntriesT &&value)
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
BatchGetAssetPropertyValueRequest & WithNextToken(NextTokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector