AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
GetContentRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/qconnect/QConnectRequest.h>
9#include <aws/qconnect/QConnect_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace QConnect {
15namespace Model {
16
20 public:
21 AWS_QCONNECT_API GetContentRequest() = 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 "GetContent"; }
28
29 AWS_QCONNECT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetContentId() const { return m_contentId; }
37 inline bool ContentIdHasBeenSet() const { return m_contentIdHasBeenSet; }
38 template <typename ContentIdT = Aws::String>
39 void SetContentId(ContentIdT&& value) {
40 m_contentIdHasBeenSet = true;
41 m_contentId = std::forward<ContentIdT>(value);
42 }
43 template <typename ContentIdT = Aws::String>
45 SetContentId(std::forward<ContentIdT>(value));
46 return *this;
47 }
49
51
56 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
57 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
58 template <typename KnowledgeBaseIdT = Aws::String>
60 m_knowledgeBaseIdHasBeenSet = true;
61 m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value);
62 }
63 template <typename KnowledgeBaseIdT = Aws::String>
65 SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_contentId;
71
72 Aws::String m_knowledgeBaseId;
73 bool m_contentIdHasBeenSet = false;
74 bool m_knowledgeBaseIdHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace QConnect
79} // namespace Aws
const Aws::String & GetContentId() const
virtual const char * GetServiceRequestName() const override
GetContentRequest & WithContentId(ContentIdT &&value)
AWS_QCONNECT_API GetContentRequest()=default
const Aws::String & GetKnowledgeBaseId() const
GetContentRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
AWS_QCONNECT_API Aws::String SerializePayload() const override
void SetKnowledgeBaseId(KnowledgeBaseIdT &&value)
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String