AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StartContentUploadRequest.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 StartContentUploadRequest();
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_CONNECTWISDOMSERVICE_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetContentType() const{ return m_contentType; }
40 inline bool ContentTypeHasBeenSet() const { return m_contentTypeHasBeenSet; }
41 inline void SetContentType(const Aws::String& value) { m_contentTypeHasBeenSet = true; m_contentType = value; }
42 inline void SetContentType(Aws::String&& value) { m_contentTypeHasBeenSet = true; m_contentType = std::move(value); }
43 inline void SetContentType(const char* value) { m_contentTypeHasBeenSet = true; m_contentType.assign(value); }
44 inline StartContentUploadRequest& WithContentType(const Aws::String& value) { SetContentType(value); return *this;}
45 inline StartContentUploadRequest& WithContentType(Aws::String&& value) { SetContentType(std::move(value)); return *this;}
46 inline StartContentUploadRequest& WithContentType(const char* value) { SetContentType(value); return *this;}
48
50
55 inline const Aws::String& GetKnowledgeBaseId() const{ return m_knowledgeBaseId; }
56 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
57 inline void SetKnowledgeBaseId(const Aws::String& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = value; }
58 inline void SetKnowledgeBaseId(Aws::String&& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = std::move(value); }
59 inline void SetKnowledgeBaseId(const char* value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId.assign(value); }
60 inline StartContentUploadRequest& WithKnowledgeBaseId(const Aws::String& value) { SetKnowledgeBaseId(value); return *this;}
61 inline StartContentUploadRequest& WithKnowledgeBaseId(Aws::String&& value) { SetKnowledgeBaseId(std::move(value)); return *this;}
62 inline StartContentUploadRequest& WithKnowledgeBaseId(const char* value) { SetKnowledgeBaseId(value); return *this;}
64
66
70 inline int GetPresignedUrlTimeToLive() const{ return m_presignedUrlTimeToLive; }
71 inline bool PresignedUrlTimeToLiveHasBeenSet() const { return m_presignedUrlTimeToLiveHasBeenSet; }
72 inline void SetPresignedUrlTimeToLive(int value) { m_presignedUrlTimeToLiveHasBeenSet = true; m_presignedUrlTimeToLive = value; }
75 private:
76
77 Aws::String m_contentType;
78 bool m_contentTypeHasBeenSet = false;
79
80 Aws::String m_knowledgeBaseId;
81 bool m_knowledgeBaseIdHasBeenSet = false;
82
83 int m_presignedUrlTimeToLive;
84 bool m_presignedUrlTimeToLiveHasBeenSet = false;
85 };
86
87} // namespace Model
88} // namespace ConnectWisdomService
89} // namespace Aws
StartContentUploadRequest & WithContentType(const char *value)
StartContentUploadRequest & WithContentType(const Aws::String &value)
StartContentUploadRequest & WithContentType(Aws::String &&value)
StartContentUploadRequest & WithKnowledgeBaseId(const char *value)
AWS_CONNECTWISDOMSERVICE_API Aws::String SerializePayload() const override
StartContentUploadRequest & WithKnowledgeBaseId(Aws::String &&value)
StartContentUploadRequest & WithKnowledgeBaseId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String