AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
GetContentAssociationRequest.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 GetContentAssociationRequest() = 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 "GetContentAssociation"; }
28
29 AWS_QCONNECT_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
36 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
37 template <typename KnowledgeBaseIdT = Aws::String>
39 m_knowledgeBaseIdHasBeenSet = true;
40 m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value);
41 }
42 template <typename KnowledgeBaseIdT = Aws::String>
44 SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetContentId() const { return m_contentId; }
54 inline bool ContentIdHasBeenSet() const { return m_contentIdHasBeenSet; }
55 template <typename ContentIdT = Aws::String>
56 void SetContentId(ContentIdT&& value) {
57 m_contentIdHasBeenSet = true;
58 m_contentId = std::forward<ContentIdT>(value);
59 }
60 template <typename ContentIdT = Aws::String>
62 SetContentId(std::forward<ContentIdT>(value));
63 return *this;
64 }
66
68
72 inline const Aws::String& GetContentAssociationId() const { return m_contentAssociationId; }
73 inline bool ContentAssociationIdHasBeenSet() const { return m_contentAssociationIdHasBeenSet; }
74 template <typename ContentAssociationIdT = Aws::String>
76 m_contentAssociationIdHasBeenSet = true;
77 m_contentAssociationId = std::forward<ContentAssociationIdT>(value);
78 }
79 template <typename ContentAssociationIdT = Aws::String>
81 SetContentAssociationId(std::forward<ContentAssociationIdT>(value));
82 return *this;
83 }
85 private:
86 Aws::String m_knowledgeBaseId;
87
88 Aws::String m_contentId;
89
90 Aws::String m_contentAssociationId;
91 bool m_knowledgeBaseIdHasBeenSet = false;
92 bool m_contentIdHasBeenSet = false;
93 bool m_contentAssociationIdHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace QConnect
98} // namespace Aws
AWS_QCONNECT_API Aws::String SerializePayload() const override
GetContentAssociationRequest & WithContentId(ContentIdT &&value)
GetContentAssociationRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
GetContentAssociationRequest & WithContentAssociationId(ContentAssociationIdT &&value)
AWS_QCONNECT_API GetContentAssociationRequest()=default
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String