AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
Blueprint.h
1
6#pragma once
7#include <aws/bedrock-data-automation-runtime/BedrockDataAutomationRuntime_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/bedrock-data-automation-runtime/model/BlueprintStage.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace BedrockDataAutomationRuntime
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint() = default;
36 AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint(Aws::Utils::Json::JsonView jsonValue);
37 AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetBlueprintArn() const { return m_blueprintArn; }
46 inline bool BlueprintArnHasBeenSet() const { return m_blueprintArnHasBeenSet; }
47 template<typename BlueprintArnT = Aws::String>
48 void SetBlueprintArn(BlueprintArnT&& value) { m_blueprintArnHasBeenSet = true; m_blueprintArn = std::forward<BlueprintArnT>(value); }
49 template<typename BlueprintArnT = Aws::String>
50 Blueprint& WithBlueprintArn(BlueprintArnT&& value) { SetBlueprintArn(std::forward<BlueprintArnT>(value)); return *this;}
52
54
57 inline const Aws::String& GetVersion() const { return m_version; }
58 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
59 template<typename VersionT = Aws::String>
60 void SetVersion(VersionT&& value) { m_versionHasBeenSet = true; m_version = std::forward<VersionT>(value); }
61 template<typename VersionT = Aws::String>
62 Blueprint& WithVersion(VersionT&& value) { SetVersion(std::forward<VersionT>(value)); return *this;}
64
66
69 inline BlueprintStage GetStage() const { return m_stage; }
70 inline bool StageHasBeenSet() const { return m_stageHasBeenSet; }
71 inline void SetStage(BlueprintStage value) { m_stageHasBeenSet = true; m_stage = value; }
72 inline Blueprint& WithStage(BlueprintStage value) { SetStage(value); return *this;}
74 private:
75
76 Aws::String m_blueprintArn;
77 bool m_blueprintArnHasBeenSet = false;
78
79 Aws::String m_version;
80 bool m_versionHasBeenSet = false;
81
83 bool m_stageHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace BedrockDataAutomationRuntime
88} // namespace Aws
Blueprint & WithBlueprintArn(BlueprintArnT &&value)
Definition Blueprint.h:50
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Aws::Utils::Json::JsonValue Jsonize() const
Blueprint & WithStage(BlueprintStage value)
Definition Blueprint.h:72
Blueprint & WithVersion(VersionT &&value)
Definition Blueprint.h:62
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint()=default
AWS_BEDROCKDATAAUTOMATIONRUNTIME_API Blueprint & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue