AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
GetIngestionJobRequest.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgentRequest.h>
8#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace BedrockAgent {
15namespace Model {
16
20 public:
21 AWS_BEDROCKAGENT_API GetIngestionJobRequest() = 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 "GetIngestionJob"; }
28
29 AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
37 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
38 template <typename KnowledgeBaseIdT = Aws::String>
40 m_knowledgeBaseIdHasBeenSet = true;
41 m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value);
42 }
43 template <typename KnowledgeBaseIdT = Aws::String>
45 SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value));
46 return *this;
47 }
49
51
55 inline const Aws::String& GetDataSourceId() const { return m_dataSourceId; }
56 inline bool DataSourceIdHasBeenSet() const { return m_dataSourceIdHasBeenSet; }
57 template <typename DataSourceIdT = Aws::String>
59 m_dataSourceIdHasBeenSet = true;
60 m_dataSourceId = std::forward<DataSourceIdT>(value);
61 }
62 template <typename DataSourceIdT = Aws::String>
64 SetDataSourceId(std::forward<DataSourceIdT>(value));
65 return *this;
66 }
68
70
74 inline const Aws::String& GetIngestionJobId() const { return m_ingestionJobId; }
75 inline bool IngestionJobIdHasBeenSet() const { return m_ingestionJobIdHasBeenSet; }
76 template <typename IngestionJobIdT = Aws::String>
78 m_ingestionJobIdHasBeenSet = true;
79 m_ingestionJobId = std::forward<IngestionJobIdT>(value);
80 }
81 template <typename IngestionJobIdT = Aws::String>
83 SetIngestionJobId(std::forward<IngestionJobIdT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_knowledgeBaseId;
89
90 Aws::String m_dataSourceId;
91
92 Aws::String m_ingestionJobId;
93 bool m_knowledgeBaseIdHasBeenSet = false;
94 bool m_dataSourceIdHasBeenSet = false;
95 bool m_ingestionJobIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace BedrockAgent
100} // namespace Aws
GetIngestionJobRequest & WithDataSourceId(DataSourceIdT &&value)
GetIngestionJobRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
virtual const char * GetServiceRequestName() const override
GetIngestionJobRequest & WithIngestionJobId(IngestionJobIdT &&value)
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
AWS_BEDROCKAGENT_API GetIngestionJobRequest()=default
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String