AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
StopIngestionJobRequest.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 StopIngestionJobRequest() = 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 "StopIngestionJob"; }
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
73 inline const Aws::String& GetIngestionJobId() const { return m_ingestionJobId; }
74 inline bool IngestionJobIdHasBeenSet() const { return m_ingestionJobIdHasBeenSet; }
75 template <typename IngestionJobIdT = Aws::String>
77 m_ingestionJobIdHasBeenSet = true;
78 m_ingestionJobId = std::forward<IngestionJobIdT>(value);
79 }
80 template <typename IngestionJobIdT = Aws::String>
82 SetIngestionJobId(std::forward<IngestionJobIdT>(value));
83 return *this;
84 }
86 private:
87 Aws::String m_knowledgeBaseId;
88
89 Aws::String m_dataSourceId;
90
91 Aws::String m_ingestionJobId;
92 bool m_knowledgeBaseIdHasBeenSet = false;
93 bool m_dataSourceIdHasBeenSet = false;
94 bool m_ingestionJobIdHasBeenSet = false;
95};
96
97} // namespace Model
98} // namespace BedrockAgent
99} // namespace Aws
virtual const char * GetServiceRequestName() const override
StopIngestionJobRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
AWS_BEDROCKAGENT_API StopIngestionJobRequest()=default
StopIngestionJobRequest & WithDataSourceId(DataSourceIdT &&value)
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
StopIngestionJobRequest & WithIngestionJobId(IngestionJobIdT &&value)
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String