AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetEntries(const Aws::Vector<BatchGetAssetPropertyValueEntry>& value) { m_entriesHasBeenSet = true; m_entries = value; }
45 inline void SetEntries(Aws::Vector<BatchGetAssetPropertyValueEntry>&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); }
48 inline BatchGetAssetPropertyValueRequest& AddEntries(const BatchGetAssetPropertyValueEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; }
49 inline BatchGetAssetPropertyValueRequest& AddEntries(BatchGetAssetPropertyValueEntry&& 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); }
61 inline BatchGetAssetPropertyValueRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
62 inline BatchGetAssetPropertyValueRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
63 inline BatchGetAssetPropertyValueRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
65 private:
66
68 bool m_entriesHasBeenSet = false;
69
70 Aws::String m_nextToken;
71 bool m_nextTokenHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace IoTSiteWise
76} // namespace Aws
void SetEntries(const Aws::Vector< BatchGetAssetPropertyValueEntry > &value)
BatchGetAssetPropertyValueRequest & WithNextToken(Aws::String &&value)
BatchGetAssetPropertyValueRequest & WithEntries(Aws::Vector< BatchGetAssetPropertyValueEntry > &&value)
const Aws::Vector< BatchGetAssetPropertyValueEntry > & GetEntries() const
BatchGetAssetPropertyValueRequest & AddEntries(const BatchGetAssetPropertyValueEntry &value)
BatchGetAssetPropertyValueRequest & AddEntries(BatchGetAssetPropertyValueEntry &&value)
BatchGetAssetPropertyValueRequest & WithEntries(const Aws::Vector< BatchGetAssetPropertyValueEntry > &value)
void SetEntries(Aws::Vector< BatchGetAssetPropertyValueEntry > &&value)
BatchGetAssetPropertyValueRequest & WithNextToken(const Aws::String &value)
AWS_IOTSITEWISE_API Aws::String SerializePayload() const override
BatchGetAssetPropertyValueRequest & WithNextToken(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector