AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteContentAssociationRequest.h
1
6#pragma once
7#include <aws/qconnect/QConnect_EXPORTS.h>
8#include <aws/qconnect/QConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace QConnect
15{
16namespace Model
17{
18
22 {
23 public:
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 "DeleteContentAssociation"; }
31
32 AWS_QCONNECT_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetContentAssociationId() const{ return m_contentAssociationId; }
41 inline bool ContentAssociationIdHasBeenSet() const { return m_contentAssociationIdHasBeenSet; }
42 inline void SetContentAssociationId(const Aws::String& value) { m_contentAssociationIdHasBeenSet = true; m_contentAssociationId = value; }
43 inline void SetContentAssociationId(Aws::String&& value) { m_contentAssociationIdHasBeenSet = true; m_contentAssociationId = std::move(value); }
44 inline void SetContentAssociationId(const char* value) { m_contentAssociationIdHasBeenSet = true; m_contentAssociationId.assign(value); }
47 inline DeleteContentAssociationRequest& WithContentAssociationId(const char* value) { SetContentAssociationId(value); return *this;}
49
51
54 inline const Aws::String& GetContentId() const{ return m_contentId; }
55 inline bool ContentIdHasBeenSet() const { return m_contentIdHasBeenSet; }
56 inline void SetContentId(const Aws::String& value) { m_contentIdHasBeenSet = true; m_contentId = value; }
57 inline void SetContentId(Aws::String&& value) { m_contentIdHasBeenSet = true; m_contentId = std::move(value); }
58 inline void SetContentId(const char* value) { m_contentIdHasBeenSet = true; m_contentId.assign(value); }
59 inline DeleteContentAssociationRequest& WithContentId(const Aws::String& value) { SetContentId(value); return *this;}
60 inline DeleteContentAssociationRequest& WithContentId(Aws::String&& value) { SetContentId(std::move(value)); return *this;}
61 inline DeleteContentAssociationRequest& WithContentId(const char* value) { SetContentId(value); return *this;}
63
65
68 inline const Aws::String& GetKnowledgeBaseId() const{ return m_knowledgeBaseId; }
69 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
70 inline void SetKnowledgeBaseId(const Aws::String& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = value; }
71 inline void SetKnowledgeBaseId(Aws::String&& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = std::move(value); }
72 inline void SetKnowledgeBaseId(const char* value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId.assign(value); }
74 inline DeleteContentAssociationRequest& WithKnowledgeBaseId(Aws::String&& value) { SetKnowledgeBaseId(std::move(value)); return *this;}
75 inline DeleteContentAssociationRequest& WithKnowledgeBaseId(const char* value) { SetKnowledgeBaseId(value); return *this;}
77 private:
78
79 Aws::String m_contentAssociationId;
80 bool m_contentAssociationIdHasBeenSet = false;
81
82 Aws::String m_contentId;
83 bool m_contentIdHasBeenSet = false;
84
85 Aws::String m_knowledgeBaseId;
86 bool m_knowledgeBaseIdHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace QConnect
91} // namespace Aws
DeleteContentAssociationRequest & WithKnowledgeBaseId(Aws::String &&value)
DeleteContentAssociationRequest & WithContentAssociationId(Aws::String &&value)
DeleteContentAssociationRequest & WithContentId(const Aws::String &value)
DeleteContentAssociationRequest & WithContentId(const char *value)
DeleteContentAssociationRequest & WithKnowledgeBaseId(const char *value)
DeleteContentAssociationRequest & WithKnowledgeBaseId(const Aws::String &value)
AWS_QCONNECT_API Aws::String SerializePayload() const override
DeleteContentAssociationRequest & WithContentId(Aws::String &&value)
DeleteContentAssociationRequest & WithContentAssociationId(const char *value)
DeleteContentAssociationRequest & WithContentAssociationId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String