AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
BlueprintDetails.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/glue/Glue_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Glue {
20namespace Model {
21
28 public:
29 AWS_GLUE_API BlueprintDetails() = default;
33
35
38 inline const Aws::String& GetBlueprintName() const { return m_blueprintName; }
39 inline bool BlueprintNameHasBeenSet() const { return m_blueprintNameHasBeenSet; }
40 template <typename BlueprintNameT = Aws::String>
41 void SetBlueprintName(BlueprintNameT&& value) {
42 m_blueprintNameHasBeenSet = true;
43 m_blueprintName = std::forward<BlueprintNameT>(value);
44 }
45 template <typename BlueprintNameT = Aws::String>
46 BlueprintDetails& WithBlueprintName(BlueprintNameT&& value) {
47 SetBlueprintName(std::forward<BlueprintNameT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetRunId() const { return m_runId; }
57 inline bool RunIdHasBeenSet() const { return m_runIdHasBeenSet; }
58 template <typename RunIdT = Aws::String>
59 void SetRunId(RunIdT&& value) {
60 m_runIdHasBeenSet = true;
61 m_runId = std::forward<RunIdT>(value);
62 }
63 template <typename RunIdT = Aws::String>
64 BlueprintDetails& WithRunId(RunIdT&& value) {
65 SetRunId(std::forward<RunIdT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_blueprintName;
71
72 Aws::String m_runId;
73 bool m_blueprintNameHasBeenSet = false;
74 bool m_runIdHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace Glue
79} // namespace Aws
const Aws::String & GetRunId() const
AWS_GLUE_API BlueprintDetails()=default
BlueprintDetails & WithRunId(RunIdT &&value)
void SetBlueprintName(BlueprintNameT &&value)
AWS_GLUE_API BlueprintDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetBlueprintName() const
BlueprintDetails & WithBlueprintName(BlueprintNameT &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_GLUE_API BlueprintDetails(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue