AWS SDK for C++

AWS SDK for C++ Version 1.11.745

Loading...
Searching...
No Matches
DescribeTopicRefreshRequest.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
11#include <utility>
12
13namespace Aws {
14namespace QuickSight {
15namespace Model {
16
20 public:
21 AWS_QUICKSIGHT_API DescribeTopicRefreshRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeTopicRefresh"; }
28
29 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
37 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
38 template <typename AwsAccountIdT = Aws::String>
39 void SetAwsAccountId(AwsAccountIdT&& value) {
40 m_awsAccountIdHasBeenSet = true;
41 m_awsAccountId = std::forward<AwsAccountIdT>(value);
42 }
43 template <typename AwsAccountIdT = Aws::String>
45 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
46 return *this;
47 }
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) {
59 m_topicIdHasBeenSet = true;
60 m_topicId = std::forward<TopicIdT>(value);
61 }
62 template <typename TopicIdT = Aws::String>
64 SetTopicId(std::forward<TopicIdT>(value));
65 return *this;
66 }
68
70
74 inline const Aws::String& GetRefreshId() const { return m_refreshId; }
75 inline bool RefreshIdHasBeenSet() const { return m_refreshIdHasBeenSet; }
76 template <typename RefreshIdT = Aws::String>
77 void SetRefreshId(RefreshIdT&& value) {
78 m_refreshIdHasBeenSet = true;
79 m_refreshId = std::forward<RefreshIdT>(value);
80 }
81 template <typename RefreshIdT = Aws::String>
83 SetRefreshId(std::forward<RefreshIdT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_awsAccountId;
89
90 Aws::String m_topicId;
91
92 Aws::String m_refreshId;
93 bool m_awsAccountIdHasBeenSet = false;
94 bool m_topicIdHasBeenSet = false;
95 bool m_refreshIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace QuickSight
100} // namespace Aws
DescribeTopicRefreshRequest & WithTopicId(TopicIdT &&value)
DescribeTopicRefreshRequest & WithRefreshId(RefreshIdT &&value)
AWS_QUICKSIGHT_API DescribeTopicRefreshRequest()=default
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
DescribeTopicRefreshRequest & WithAwsAccountId(AwsAccountIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String