AWS SDK for C++

AWS SDK for C++ Version 1.11.747

Loading...
Searching...
No Matches
UpdateQPersonalizationConfigurationRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10#include <aws/quicksight/model/PersonalizationMode.h>
11
12#include <utility>
13
14namespace Aws {
15namespace QuickSight {
16namespace Model {
17
21 public:
22 AWS_QUICKSIGHT_API UpdateQPersonalizationConfigurationRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateQPersonalizationConfiguration"; }
29
30 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
38 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
39 template <typename AwsAccountIdT = Aws::String>
40 void SetAwsAccountId(AwsAccountIdT&& value) {
41 m_awsAccountIdHasBeenSet = true;
42 m_awsAccountId = std::forward<AwsAccountIdT>(value);
43 }
44 template <typename AwsAccountIdT = Aws::String>
46 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
47 return *this;
48 }
50
52
57 inline PersonalizationMode GetPersonalizationMode() const { return m_personalizationMode; }
58 inline bool PersonalizationModeHasBeenSet() const { return m_personalizationModeHasBeenSet; }
60 m_personalizationModeHasBeenSet = true;
61 m_personalizationMode = value;
62 }
65 return *this;
66 }
68 private:
69 Aws::String m_awsAccountId;
70
72 bool m_awsAccountIdHasBeenSet = false;
73 bool m_personalizationModeHasBeenSet = false;
74};
75
76} // namespace Model
77} // namespace QuickSight
78} // namespace Aws
UpdateQPersonalizationConfigurationRequest & WithAwsAccountId(AwsAccountIdT &&value)
UpdateQPersonalizationConfigurationRequest & WithPersonalizationMode(PersonalizationMode value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String