AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetPromptRequest.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
8#include <aws/bedrock-agent/BedrockAgentRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace BedrockAgent
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_BEDROCKAGENT_API GetPromptRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetPrompt"; }
35
36 AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override;
37
38 AWS_BEDROCKAGENT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetPromptIdentifier() const { return m_promptIdentifier; }
46 inline bool PromptIdentifierHasBeenSet() const { return m_promptIdentifierHasBeenSet; }
47 template<typename PromptIdentifierT = Aws::String>
48 void SetPromptIdentifier(PromptIdentifierT&& value) { m_promptIdentifierHasBeenSet = true; m_promptIdentifier = std::forward<PromptIdentifierT>(value); }
49 template<typename PromptIdentifierT = Aws::String>
50 GetPromptRequest& WithPromptIdentifier(PromptIdentifierT&& value) { SetPromptIdentifier(std::forward<PromptIdentifierT>(value)); return *this;}
52
54
58 inline const Aws::String& GetPromptVersion() const { return m_promptVersion; }
59 inline bool PromptVersionHasBeenSet() const { return m_promptVersionHasBeenSet; }
60 template<typename PromptVersionT = Aws::String>
61 void SetPromptVersion(PromptVersionT&& value) { m_promptVersionHasBeenSet = true; m_promptVersion = std::forward<PromptVersionT>(value); }
62 template<typename PromptVersionT = Aws::String>
63 GetPromptRequest& WithPromptVersion(PromptVersionT&& value) { SetPromptVersion(std::forward<PromptVersionT>(value)); return *this;}
65 private:
66
67 Aws::String m_promptIdentifier;
68 bool m_promptIdentifierHasBeenSet = false;
69
70 Aws::String m_promptVersion;
71 bool m_promptVersionHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace BedrockAgent
76} // namespace Aws
const Aws::String & GetPromptVersion() const
virtual const char * GetServiceRequestName() const override
void SetPromptVersion(PromptVersionT &&value)
GetPromptRequest & WithPromptVersion(PromptVersionT &&value)
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
const Aws::String & GetPromptIdentifier() const
AWS_BEDROCKAGENT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetPromptRequest & WithPromptIdentifier(PromptIdentifierT &&value)
void SetPromptIdentifier(PromptIdentifierT &&value)
AWS_BEDROCKAGENT_API GetPromptRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String