AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetBlueprintRequest.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
8#include <aws/bedrock-data-automation/BedrockDataAutomationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/bedrock-data-automation/model/BlueprintStage.h>
11#include <utility>
12
13namespace Aws
14{
15namespace BedrockDataAutomation
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_BEDROCKDATAAUTOMATION_API GetBlueprintRequest() = 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 "GetBlueprint"; }
35
36 AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
44 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
45 template<typename BlueprintArnT = Aws::String>
46 void SetBlueprintArn(BlueprintArnT&& value) { m_blueprintArnHasBeenSet = true; m_blueprintArn = std::forward<BlueprintArnT>(value); }
47 template<typename BlueprintArnT = Aws::String>
48 GetBlueprintRequest& WithBlueprintArn(BlueprintArnT&& value) { SetBlueprintArn(std::forward<BlueprintArnT>(value)); return *this;}
50
52
55 inline const Aws::String& GetBlueprintVersion() const { return m_blueprintVersion; }
56 inline bool BlueprintVersionHasBeenSet() const { return m_blueprintVersionHasBeenSet; }
57 template<typename BlueprintVersionT = Aws::String>
58 void SetBlueprintVersion(BlueprintVersionT&& value) { m_blueprintVersionHasBeenSet = true; m_blueprintVersion = std::forward<BlueprintVersionT>(value); }
59 template<typename BlueprintVersionT = Aws::String>
60 GetBlueprintRequest& WithBlueprintVersion(BlueprintVersionT&& value) { SetBlueprintVersion(std::forward<BlueprintVersionT>(value)); return *this;}
62
64
67 inline BlueprintStage GetBlueprintStage() const { return m_blueprintStage; }
68 inline bool BlueprintStageHasBeenSet() const { return m_blueprintStageHasBeenSet; }
69 inline void SetBlueprintStage(BlueprintStage value) { m_blueprintStageHasBeenSet = true; m_blueprintStage = value; }
72 private:
73
74 Aws::String m_blueprintArn;
75 bool m_blueprintArnHasBeenSet = false;
76
77 Aws::String m_blueprintVersion;
78 bool m_blueprintVersionHasBeenSet = false;
79
81 bool m_blueprintStageHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace BedrockDataAutomation
86} // namespace Aws
AWS_BEDROCKDATAAUTOMATION_API Aws::String SerializePayload() const override
GetBlueprintRequest & WithBlueprintArn(BlueprintArnT &&value)
virtual const char * GetServiceRequestName() const override
GetBlueprintRequest & WithBlueprintStage(BlueprintStage value)
GetBlueprintRequest & WithBlueprintVersion(BlueprintVersionT &&value)
AWS_BEDROCKDATAAUTOMATION_API GetBlueprintRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String