AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
StartContentUploadRequest.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:
24 AWS_QCONNECT_API StartContentUploadRequest() = default;
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 "StartContentUpload"; }
31
32 AWS_QCONNECT_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
41 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
42 template<typename KnowledgeBaseIdT = Aws::String>
43 void SetKnowledgeBaseId(KnowledgeBaseIdT&& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value); }
44 template<typename KnowledgeBaseIdT = Aws::String>
45 StartContentUploadRequest& WithKnowledgeBaseId(KnowledgeBaseIdT&& value) { SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetContentType() const { return m_contentType; }
53 inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
54 template<typename ContentTypeT = Aws::String>
55 void SetContentType(ContentTypeT&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::forward<ContentTypeT>(value); }
56 template<typename ContentTypeT = Aws::String>
57 StartContentUploadRequest& WithContentType(ContentTypeT&& value) { SetContentType(std::forward<ContentTypeT>(value)); return *this;}
59
61
65 inline int GetPresignedUrlTimeToLive() const { return m_presignedUrlTimeToLive; }
66 inline bool PresignedUrlTimeToLiveHasBeenSet() const { return m_presignedUrlTimeToLiveHasBeenSet; }
67 inline void SetPresignedUrlTimeToLive(int value) { m_presignedUrlTimeToLiveHasBeenSet = true; m_presignedUrlTimeToLive = value; }
70 private:
71
72 Aws::String m_knowledgeBaseId;
73 bool m_knowledgeBaseIdHasBeenSet = false;
74
75 Aws::String m_contentType;
76 bool m_contentTypeHasBeenSet = false;
77
78 int m_presignedUrlTimeToLive{0};
79 bool m_presignedUrlTimeToLiveHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace QConnect
84} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_QCONNECT_API StartContentUploadRequest()=default
AWS_QCONNECT_API Aws::String SerializePayload() const override
StartContentUploadRequest & WithContentType(ContentTypeT &&value)
StartContentUploadRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
StartContentUploadRequest & WithPresignedUrlTimeToLive(int value)
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String