AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateRecommenderConfigurationRequest.h
1
6#pragma once
7#include <aws/pinpoint/Pinpoint_EXPORTS.h>
8#include <aws/pinpoint/PinpointRequest.h>
9#include <aws/pinpoint/model/CreateRecommenderConfiguration.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Pinpoint
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "CreateRecommenderConfiguration"; }
31
32 AWS_PINPOINT_API Aws::String SerializePayload() const override;
33
34
36
37 inline const CreateRecommenderConfiguration& GetCreateRecommenderConfiguration() const{ return m_createRecommenderConfiguration; }
38 inline bool CreateRecommenderConfigurationHasBeenSet() const { return m_createRecommenderConfigurationHasBeenSet; }
39 inline void SetCreateRecommenderConfiguration(const CreateRecommenderConfiguration& value) { m_createRecommenderConfigurationHasBeenSet = true; m_createRecommenderConfiguration = value; }
40 inline void SetCreateRecommenderConfiguration(CreateRecommenderConfiguration&& value) { m_createRecommenderConfigurationHasBeenSet = true; m_createRecommenderConfiguration = std::move(value); }
44 private:
45
46 CreateRecommenderConfiguration m_createRecommenderConfiguration;
47 bool m_createRecommenderConfigurationHasBeenSet = false;
48 };
49
50} // namespace Model
51} // namespace Pinpoint
52} // namespace Aws
CreateRecommenderConfigurationRequest & WithCreateRecommenderConfiguration(CreateRecommenderConfiguration &&value)
CreateRecommenderConfigurationRequest & WithCreateRecommenderConfiguration(const CreateRecommenderConfiguration &value)
void SetCreateRecommenderConfiguration(const CreateRecommenderConfiguration &value)
const CreateRecommenderConfiguration & GetCreateRecommenderConfiguration() const
AWS_PINPOINT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String