AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateRecommenderConfigurationRequest.h
1
6#pragma once
7#include <aws/pinpoint/Pinpoint_EXPORTS.h>
8#include <aws/pinpoint/PinpointRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/pinpoint/model/UpdateRecommenderConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Pinpoint
16{
17namespace Model
18{
19
23 {
24 public:
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 "UpdateRecommenderConfiguration"; }
32
33 AWS_PINPOINT_API Aws::String SerializePayload() const override;
34
35
37
42 inline const Aws::String& GetRecommenderId() const{ return m_recommenderId; }
43 inline bool RecommenderIdHasBeenSet() const { return m_recommenderIdHasBeenSet; }
44 inline void SetRecommenderId(const Aws::String& value) { m_recommenderIdHasBeenSet = true; m_recommenderId = value; }
45 inline void SetRecommenderId(Aws::String&& value) { m_recommenderIdHasBeenSet = true; m_recommenderId = std::move(value); }
46 inline void SetRecommenderId(const char* value) { m_recommenderIdHasBeenSet = true; m_recommenderId.assign(value); }
48 inline UpdateRecommenderConfigurationRequest& WithRecommenderId(Aws::String&& value) { SetRecommenderId(std::move(value)); return *this;}
49 inline UpdateRecommenderConfigurationRequest& WithRecommenderId(const char* value) { SetRecommenderId(value); return *this;}
51
53
54 inline const UpdateRecommenderConfiguration& GetUpdateRecommenderConfiguration() const{ return m_updateRecommenderConfiguration; }
55 inline bool UpdateRecommenderConfigurationHasBeenSet() const { return m_updateRecommenderConfigurationHasBeenSet; }
56 inline void SetUpdateRecommenderConfiguration(const UpdateRecommenderConfiguration& value) { m_updateRecommenderConfigurationHasBeenSet = true; m_updateRecommenderConfiguration = value; }
57 inline void SetUpdateRecommenderConfiguration(UpdateRecommenderConfiguration&& value) { m_updateRecommenderConfigurationHasBeenSet = true; m_updateRecommenderConfiguration = std::move(value); }
61 private:
62
63 Aws::String m_recommenderId;
64 bool m_recommenderIdHasBeenSet = false;
65
66 UpdateRecommenderConfiguration m_updateRecommenderConfiguration;
67 bool m_updateRecommenderConfigurationHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace Pinpoint
72} // namespace Aws
void SetUpdateRecommenderConfiguration(const UpdateRecommenderConfiguration &value)
AWS_PINPOINT_API Aws::String SerializePayload() const override
UpdateRecommenderConfigurationRequest & WithRecommenderId(const Aws::String &value)
UpdateRecommenderConfigurationRequest & WithRecommenderId(const char *value)
const UpdateRecommenderConfiguration & GetUpdateRecommenderConfiguration() const
UpdateRecommenderConfigurationRequest & WithUpdateRecommenderConfiguration(const UpdateRecommenderConfiguration &value)
UpdateRecommenderConfigurationRequest & WithUpdateRecommenderConfiguration(UpdateRecommenderConfiguration &&value)
UpdateRecommenderConfigurationRequest & WithRecommenderId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String