AWS SDK for C++

AWS SDK for C++ Version 1.11.690

Loading...
Searching...
No Matches
BatchDeleteConnectionRequest.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 BatchDeleteConnectionRequest() = 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 "BatchDeleteConnection"; }
29
30 AWS_GLUE_API Aws::String SerializePayload() const override;
31
33
35
39 inline const Aws::String& GetCatalogId() const { return m_catalogId; }
40 inline bool CatalogIdHasBeenSet() const { return m_catalogIdHasBeenSet; }
41 template <typename CatalogIdT = Aws::String>
42 void SetCatalogId(CatalogIdT&& value) {
43 m_catalogIdHasBeenSet = true;
44 m_catalogId = std::forward<CatalogIdT>(value);
45 }
46 template <typename CatalogIdT = Aws::String>
48 SetCatalogId(std::forward<CatalogIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::Vector<Aws::String>& GetConnectionNameList() const { return m_connectionNameList; }
58 inline bool ConnectionNameListHasBeenSet() const { return m_connectionNameListHasBeenSet; }
59 template <typename ConnectionNameListT = Aws::Vector<Aws::String>>
60 void SetConnectionNameList(ConnectionNameListT&& value) {
61 m_connectionNameListHasBeenSet = true;
62 m_connectionNameList = std::forward<ConnectionNameListT>(value);
63 }
64 template <typename ConnectionNameListT = Aws::Vector<Aws::String>>
66 SetConnectionNameList(std::forward<ConnectionNameListT>(value));
67 return *this;
68 }
69 template <typename ConnectionNameListT = Aws::String>
71 m_connectionNameListHasBeenSet = true;
72 m_connectionNameList.emplace_back(std::forward<ConnectionNameListT>(value));
73 return *this;
74 }
76 private:
77 Aws::String m_catalogId;
78 bool m_catalogIdHasBeenSet = false;
79
80 Aws::Vector<Aws::String> m_connectionNameList;
81 bool m_connectionNameListHasBeenSet = false;
82};
83
84} // namespace Model
85} // namespace Glue
86} // namespace Aws
AWS_GLUE_API BatchDeleteConnectionRequest()=default
BatchDeleteConnectionRequest & AddConnectionNameList(ConnectionNameListT &&value)
AWS_GLUE_API Aws::String SerializePayload() const override
const Aws::Vector< Aws::String > & GetConnectionNameList() const
BatchDeleteConnectionRequest & WithConnectionNameList(ConnectionNameListT &&value)
BatchDeleteConnectionRequest & WithCatalogId(CatalogIdT &&value)
AWS_GLUE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
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