AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetContentSummaryRequest.h
1
6#pragma once
7#include <aws/wisdom/ConnectWisdomService_EXPORTS.h>
8#include <aws/wisdom/ConnectWisdomServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace ConnectWisdomService
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_CONNECTWISDOMSERVICE_API GetContentSummaryRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetContentSummary"; }
31
32 AWS_CONNECTWISDOMSERVICE_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetContentId() const{ return m_contentId; }
41 inline bool ContentIdHasBeenSet() const { return m_contentIdHasBeenSet; }
42 inline void SetContentId(const Aws::String& value) { m_contentIdHasBeenSet = true; m_contentId = value; }
43 inline void SetContentId(Aws::String&& value) { m_contentIdHasBeenSet = true; m_contentId = std::move(value); }
44 inline void SetContentId(const char* value) { m_contentIdHasBeenSet = true; m_contentId.assign(value); }
45 inline GetContentSummaryRequest& WithContentId(const Aws::String& value) { SetContentId(value); return *this;}
46 inline GetContentSummaryRequest& WithContentId(Aws::String&& value) { SetContentId(std::move(value)); return *this;}
47 inline GetContentSummaryRequest& WithContentId(const char* value) { SetContentId(value); return *this;}
49
51
56 inline const Aws::String& GetKnowledgeBaseId() const{ return m_knowledgeBaseId; }
57 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
58 inline void SetKnowledgeBaseId(const Aws::String& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = value; }
59 inline void SetKnowledgeBaseId(Aws::String&& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = std::move(value); }
60 inline void SetKnowledgeBaseId(const char* value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId.assign(value); }
61 inline GetContentSummaryRequest& WithKnowledgeBaseId(const Aws::String& value) { SetKnowledgeBaseId(value); return *this;}
62 inline GetContentSummaryRequest& WithKnowledgeBaseId(Aws::String&& value) { SetKnowledgeBaseId(std::move(value)); return *this;}
63 inline GetContentSummaryRequest& WithKnowledgeBaseId(const char* value) { SetKnowledgeBaseId(value); return *this;}
65 private:
66
67 Aws::String m_contentId;
68 bool m_contentIdHasBeenSet = false;
69
70 Aws::String m_knowledgeBaseId;
71 bool m_knowledgeBaseIdHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace ConnectWisdomService
76} // namespace Aws
GetContentSummaryRequest & WithContentId(const Aws::String &value)
GetContentSummaryRequest & WithKnowledgeBaseId(const char *value)
GetContentSummaryRequest & WithContentId(Aws::String &&value)
GetContentSummaryRequest & WithKnowledgeBaseId(const Aws::String &value)
GetContentSummaryRequest & WithKnowledgeBaseId(Aws::String &&value)
AWS_CONNECTWISDOMSERVICE_API Aws::String SerializePayload() const override
GetContentSummaryRequest & WithContentId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String