AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateTopicRequest.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/quicksight/model/TopicDetails.h>
11#include <aws/quicksight/model/CustomInstructions.h>
12#include <utility>
13
14namespace Aws
15{
16namespace QuickSight
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_QUICKSIGHT_API UpdateTopicRequest() = default;
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 "UpdateTopic"; }
33
34 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
35
36
38
42 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
43 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
44 template<typename AwsAccountIdT = Aws::String>
45 void SetAwsAccountId(AwsAccountIdT&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::forward<AwsAccountIdT>(value); }
46 template<typename AwsAccountIdT = Aws::String>
47 UpdateTopicRequest& WithAwsAccountId(AwsAccountIdT&& value) { SetAwsAccountId(std::forward<AwsAccountIdT>(value)); return *this;}
49
51
55 inline const Aws::String& GetTopicId() const { return m_topicId; }
56 inline bool TopicIdHasBeenSet() const { return m_topicIdHasBeenSet; }
57 template<typename TopicIdT = Aws::String>
58 void SetTopicId(TopicIdT&& value) { m_topicIdHasBeenSet = true; m_topicId = std::forward<TopicIdT>(value); }
59 template<typename TopicIdT = Aws::String>
60 UpdateTopicRequest& WithTopicId(TopicIdT&& value) { SetTopicId(std::forward<TopicIdT>(value)); return *this;}
62
64
67 inline const TopicDetails& GetTopic() const { return m_topic; }
68 inline bool TopicHasBeenSet() const { return m_topicHasBeenSet; }
69 template<typename TopicT = TopicDetails>
70 void SetTopic(TopicT&& value) { m_topicHasBeenSet = true; m_topic = std::forward<TopicT>(value); }
71 template<typename TopicT = TopicDetails>
72 UpdateTopicRequest& WithTopic(TopicT&& value) { SetTopic(std::forward<TopicT>(value)); return *this;}
74
76
79 inline const CustomInstructions& GetCustomInstructions() const { return m_customInstructions; }
80 inline bool CustomInstructionsHasBeenSet() const { return m_customInstructionsHasBeenSet; }
81 template<typename CustomInstructionsT = CustomInstructions>
82 void SetCustomInstructions(CustomInstructionsT&& value) { m_customInstructionsHasBeenSet = true; m_customInstructions = std::forward<CustomInstructionsT>(value); }
83 template<typename CustomInstructionsT = CustomInstructions>
84 UpdateTopicRequest& WithCustomInstructions(CustomInstructionsT&& value) { SetCustomInstructions(std::forward<CustomInstructionsT>(value)); return *this;}
86 private:
87
88 Aws::String m_awsAccountId;
89 bool m_awsAccountIdHasBeenSet = false;
90
91 Aws::String m_topicId;
92 bool m_topicIdHasBeenSet = false;
93
94 TopicDetails m_topic;
95 bool m_topicHasBeenSet = false;
96
97 CustomInstructions m_customInstructions;
98 bool m_customInstructionsHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace QuickSight
103} // namespace Aws
UpdateTopicRequest & WithCustomInstructions(CustomInstructionsT &&value)
UpdateTopicRequest & WithTopic(TopicT &&value)
const CustomInstructions & GetCustomInstructions() const
AWS_QUICKSIGHT_API UpdateTopicRequest()=default
UpdateTopicRequest & WithAwsAccountId(AwsAccountIdT &&value)
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
UpdateTopicRequest & WithTopicId(TopicIdT &&value)
void SetCustomInstructions(CustomInstructionsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String