AWS SDK for C++

AWS SDK for C++ Version 1.11.682

Loading...
Searching...
No Matches
GetBlueprintRunsResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/glue/Glue_EXPORTS.h>
10#include <aws/glue/model/BlueprintRun.h>
11
12#include <utility>
13
14namespace Aws {
15template <typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils {
19namespace Json {
20class JsonValue;
21} // namespace Json
22} // namespace Utils
23namespace Glue {
24namespace Model {
26 public:
27 AWS_GLUE_API GetBlueprintRunsResult() = default;
30
32
35 inline const Aws::Vector<BlueprintRun>& GetBlueprintRuns() const { return m_blueprintRuns; }
36 template <typename BlueprintRunsT = Aws::Vector<BlueprintRun>>
37 void SetBlueprintRuns(BlueprintRunsT&& value) {
38 m_blueprintRunsHasBeenSet = true;
39 m_blueprintRuns = std::forward<BlueprintRunsT>(value);
40 }
41 template <typename BlueprintRunsT = Aws::Vector<BlueprintRun>>
42 GetBlueprintRunsResult& WithBlueprintRuns(BlueprintRunsT&& value) {
43 SetBlueprintRuns(std::forward<BlueprintRunsT>(value));
44 return *this;
45 }
46 template <typename BlueprintRunsT = BlueprintRun>
47 GetBlueprintRunsResult& AddBlueprintRuns(BlueprintRunsT&& value) {
48 m_blueprintRunsHasBeenSet = true;
49 m_blueprintRuns.emplace_back(std::forward<BlueprintRunsT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetNextToken() const { return m_nextToken; }
59 template <typename NextTokenT = Aws::String>
60 void SetNextToken(NextTokenT&& value) {
61 m_nextTokenHasBeenSet = true;
62 m_nextToken = std::forward<NextTokenT>(value);
63 }
64 template <typename NextTokenT = Aws::String>
66 SetNextToken(std::forward<NextTokenT>(value));
67 return *this;
68 }
70
72
73 inline const Aws::String& GetRequestId() const { return m_requestId; }
74 template <typename RequestIdT = Aws::String>
75 void SetRequestId(RequestIdT&& value) {
76 m_requestIdHasBeenSet = true;
77 m_requestId = std::forward<RequestIdT>(value);
78 }
79 template <typename RequestIdT = Aws::String>
81 SetRequestId(std::forward<RequestIdT>(value));
82 return *this;
83 }
85 private:
86 Aws::Vector<BlueprintRun> m_blueprintRuns;
87 bool m_blueprintRunsHasBeenSet = false;
88
89 Aws::String m_nextToken;
90 bool m_nextTokenHasBeenSet = false;
91
92 Aws::String m_requestId;
93 bool m_requestIdHasBeenSet = false;
94};
95
96} // namespace Model
97} // namespace Glue
98} // namespace Aws
GetBlueprintRunsResult & WithBlueprintRuns(BlueprintRunsT &&value)
const Aws::Vector< BlueprintRun > & GetBlueprintRuns() const
AWS_GLUE_API GetBlueprintRunsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetBlueprintRunsResult & AddBlueprintRuns(BlueprintRunsT &&value)
GetBlueprintRunsResult & WithNextToken(NextTokenT &&value)
AWS_GLUE_API GetBlueprintRunsResult()=default
GetBlueprintRunsResult & WithRequestId(RequestIdT &&value)
AWS_GLUE_API GetBlueprintRunsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue