AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchPutPropertyValuesRequest.h
1
6#pragma once
7#include <aws/iottwinmaker/IoTTwinMaker_EXPORTS.h>
8#include <aws/iottwinmaker/IoTTwinMakerRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/iottwinmaker/model/PropertyValueEntry.h>
12#include <utility>
13
14namespace Aws
15{
16namespace IoTTwinMaker
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_IOTTWINMAKER_API BatchPutPropertyValuesRequest();
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 "BatchPutPropertyValues"; }
33
34 AWS_IOTTWINMAKER_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetWorkspaceId() const{ return m_workspaceId; }
42 inline bool WorkspaceIdHasBeenSet() const { return m_workspaceIdHasBeenSet; }
43 inline void SetWorkspaceId(const Aws::String& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = value; }
44 inline void SetWorkspaceId(Aws::String&& value) { m_workspaceIdHasBeenSet = true; m_workspaceId = std::move(value); }
45 inline void SetWorkspaceId(const char* value) { m_workspaceIdHasBeenSet = true; m_workspaceId.assign(value); }
46 inline BatchPutPropertyValuesRequest& WithWorkspaceId(const Aws::String& value) { SetWorkspaceId(value); return *this;}
47 inline BatchPutPropertyValuesRequest& WithWorkspaceId(Aws::String&& value) { SetWorkspaceId(std::move(value)); return *this;}
48 inline BatchPutPropertyValuesRequest& WithWorkspaceId(const char* value) { SetWorkspaceId(value); return *this;}
50
52
56 inline const Aws::Vector<PropertyValueEntry>& GetEntries() const{ return m_entries; }
57 inline bool EntriesHasBeenSet() const { return m_entriesHasBeenSet; }
58 inline void SetEntries(const Aws::Vector<PropertyValueEntry>& value) { m_entriesHasBeenSet = true; m_entries = value; }
59 inline void SetEntries(Aws::Vector<PropertyValueEntry>&& value) { m_entriesHasBeenSet = true; m_entries = std::move(value); }
61 inline BatchPutPropertyValuesRequest& WithEntries(Aws::Vector<PropertyValueEntry>&& value) { SetEntries(std::move(value)); return *this;}
62 inline BatchPutPropertyValuesRequest& AddEntries(const PropertyValueEntry& value) { m_entriesHasBeenSet = true; m_entries.push_back(value); return *this; }
63 inline BatchPutPropertyValuesRequest& AddEntries(PropertyValueEntry&& value) { m_entriesHasBeenSet = true; m_entries.push_back(std::move(value)); return *this; }
65 private:
66
67 Aws::String m_workspaceId;
68 bool m_workspaceIdHasBeenSet = false;
69
71 bool m_entriesHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace IoTTwinMaker
76} // namespace Aws
const Aws::Vector< PropertyValueEntry > & GetEntries() const
BatchPutPropertyValuesRequest & WithWorkspaceId(const char *value)
AWS_IOTTWINMAKER_API Aws::String SerializePayload() const override
BatchPutPropertyValuesRequest & AddEntries(const PropertyValueEntry &value)
void SetEntries(const Aws::Vector< PropertyValueEntry > &value)
BatchPutPropertyValuesRequest & WithWorkspaceId(Aws::String &&value)
BatchPutPropertyValuesRequest & WithEntries(const Aws::Vector< PropertyValueEntry > &value)
BatchPutPropertyValuesRequest & WithEntries(Aws::Vector< PropertyValueEntry > &&value)
BatchPutPropertyValuesRequest & WithWorkspaceId(const Aws::String &value)
void SetEntries(Aws::Vector< PropertyValueEntry > &&value)
BatchPutPropertyValuesRequest & AddEntries(PropertyValueEntry &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector