AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
UpdateDataLakeDatasetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/supplychain/SupplyChainRequest.h>
9#include <aws/supplychain/SupplyChain_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SupplyChain {
15namespace Model {
16
24 public:
25 AWS_SUPPLYCHAIN_API UpdateDataLakeDatasetRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateDataLakeDataset"; }
32
33 AWS_SUPPLYCHAIN_API Aws::String SerializePayload() const override;
34
36
39 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
40 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
41 template <typename InstanceIdT = Aws::String>
42 void SetInstanceId(InstanceIdT&& value) {
43 m_instanceIdHasBeenSet = true;
44 m_instanceId = std::forward<InstanceIdT>(value);
45 }
46 template <typename InstanceIdT = Aws::String>
48 SetInstanceId(std::forward<InstanceIdT>(value));
49 return *this;
50 }
52
54
63 inline const Aws::String& GetNamespace() const { return m_namespace; }
64 inline bool NamespaceHasBeenSet() const { return m_namespaceHasBeenSet; }
65 template <typename NamespaceT = Aws::String>
66 void SetNamespace(NamespaceT&& value) {
67 m_namespaceHasBeenSet = true;
68 m_namespace = std::forward<NamespaceT>(value);
69 }
70 template <typename NamespaceT = Aws::String>
72 SetNamespace(std::forward<NamespaceT>(value));
73 return *this;
74 }
76
78
83 inline const Aws::String& GetName() const { return m_name; }
84 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
85 template <typename NameT = Aws::String>
86 void SetName(NameT&& value) {
87 m_nameHasBeenSet = true;
88 m_name = std::forward<NameT>(value);
89 }
90 template <typename NameT = Aws::String>
92 SetName(std::forward<NameT>(value));
93 return *this;
94 }
96
98
101 inline const Aws::String& GetDescription() const { return m_description; }
102 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
103 template <typename DescriptionT = Aws::String>
104 void SetDescription(DescriptionT&& value) {
105 m_descriptionHasBeenSet = true;
106 m_description = std::forward<DescriptionT>(value);
107 }
108 template <typename DescriptionT = Aws::String>
110 SetDescription(std::forward<DescriptionT>(value));
111 return *this;
112 }
114 private:
115 Aws::String m_instanceId;
116
117 Aws::String m_namespace;
118
119 Aws::String m_name;
120
121 Aws::String m_description;
122 bool m_instanceIdHasBeenSet = false;
123 bool m_namespaceHasBeenSet = false;
124 bool m_nameHasBeenSet = false;
125 bool m_descriptionHasBeenSet = false;
126};
127
128} // namespace Model
129} // namespace SupplyChain
130} // namespace Aws
AWS_SUPPLYCHAIN_API UpdateDataLakeDatasetRequest()=default
AWS_SUPPLYCHAIN_API Aws::String SerializePayload() const override
UpdateDataLakeDatasetRequest & WithName(NameT &&value)
UpdateDataLakeDatasetRequest & WithDescription(DescriptionT &&value)
UpdateDataLakeDatasetRequest & WithNamespace(NamespaceT &&value)
UpdateDataLakeDatasetRequest & WithInstanceId(InstanceIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String