AWS SDK for C++

AWS SDK for C++ Version 1.11.689

Loading...
Searching...
No Matches
BatchGetBlueprintsRequest.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/GlueRequest.h>
10#include <aws/glue/Glue_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Glue {
16namespace Model {
17
21 public:
22 AWS_GLUE_API BatchGetBlueprintsRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "BatchGetBlueprints"; }
29
30 AWS_GLUE_API Aws::String SerializePayload() const override;
31
33
35
38 inline const Aws::Vector<Aws::String>& GetNames() const { return m_names; }
39 inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
40 template <typename NamesT = Aws::Vector<Aws::String>>
41 void SetNames(NamesT&& value) {
42 m_namesHasBeenSet = true;
43 m_names = std::forward<NamesT>(value);
44 }
45 template <typename NamesT = Aws::Vector<Aws::String>>
47 SetNames(std::forward<NamesT>(value));
48 return *this;
49 }
50 template <typename NamesT = Aws::String>
52 m_namesHasBeenSet = true;
53 m_names.emplace_back(std::forward<NamesT>(value));
54 return *this;
55 }
57
59
62 inline bool GetIncludeBlueprint() const { return m_includeBlueprint; }
63 inline bool IncludeBlueprintHasBeenSet() const { return m_includeBlueprintHasBeenSet; }
64 inline void SetIncludeBlueprint(bool value) {
65 m_includeBlueprintHasBeenSet = true;
66 m_includeBlueprint = value;
67 }
70 return *this;
71 }
73
75
79 inline bool GetIncludeParameterSpec() const { return m_includeParameterSpec; }
80 inline bool IncludeParameterSpecHasBeenSet() const { return m_includeParameterSpecHasBeenSet; }
81 inline void SetIncludeParameterSpec(bool value) {
82 m_includeParameterSpecHasBeenSet = true;
83 m_includeParameterSpec = value;
84 }
87 return *this;
88 }
90 private:
92 bool m_namesHasBeenSet = false;
93
94 bool m_includeBlueprint{false};
95 bool m_includeBlueprintHasBeenSet = false;
96
97 bool m_includeParameterSpec{false};
98 bool m_includeParameterSpecHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace Glue
103} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_GLUE_API BatchGetBlueprintsRequest()=default
BatchGetBlueprintsRequest & AddNames(NamesT &&value)
BatchGetBlueprintsRequest & WithIncludeBlueprint(bool value)
AWS_GLUE_API Aws::String SerializePayload() const override
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
BatchGetBlueprintsRequest & WithNames(NamesT &&value)
BatchGetBlueprintsRequest & WithIncludeParameterSpec(bool value)
const Aws::Vector< Aws::String > & GetNames() const
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector