AWS SDK for C++

AWS SDK for C++ Version 1.11.756

Loading...
Searching...
No Matches
DeleteMLEndpointRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/neptunedata/NeptunedataRequest.h>
9#include <aws/neptunedata/Neptunedata_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Http {
15class URI;
16} // namespace Http
17namespace neptunedata {
18namespace Model {
19
23 public:
24 AWS_NEPTUNEDATA_API DeleteMLEndpointRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteMLEndpoint"; }
31
32 AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override;
33
34 AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
35
37
40 inline const Aws::String& GetId() const { return m_id; }
41 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
42 template <typename IdT = Aws::String>
43 void SetId(IdT&& value) {
44 m_idHasBeenSet = true;
45 m_id = std::forward<IdT>(value);
46 }
47 template <typename IdT = Aws::String>
49 SetId(std::forward<IdT>(value));
50 return *this;
51 }
53
55
60 inline const Aws::String& GetNeptuneIamRoleArn() const { return m_neptuneIamRoleArn; }
61 inline bool NeptuneIamRoleArnHasBeenSet() const { return m_neptuneIamRoleArnHasBeenSet; }
62 template <typename NeptuneIamRoleArnT = Aws::String>
63 void SetNeptuneIamRoleArn(NeptuneIamRoleArnT&& value) {
64 m_neptuneIamRoleArnHasBeenSet = true;
65 m_neptuneIamRoleArn = std::forward<NeptuneIamRoleArnT>(value);
66 }
67 template <typename NeptuneIamRoleArnT = Aws::String>
68 DeleteMLEndpointRequest& WithNeptuneIamRoleArn(NeptuneIamRoleArnT&& value) {
69 SetNeptuneIamRoleArn(std::forward<NeptuneIamRoleArnT>(value));
70 return *this;
71 }
73
75
79 inline bool GetClean() const { return m_clean; }
80 inline bool CleanHasBeenSet() const { return m_cleanHasBeenSet; }
81 inline void SetClean(bool value) {
82 m_cleanHasBeenSet = true;
83 m_clean = value;
84 }
85 inline DeleteMLEndpointRequest& WithClean(bool value) {
86 SetClean(value);
87 return *this;
88 }
90 private:
91 Aws::String m_id;
92
93 Aws::String m_neptuneIamRoleArn;
94
95 bool m_clean{false};
96 bool m_idHasBeenSet = false;
97 bool m_neptuneIamRoleArnHasBeenSet = false;
98 bool m_cleanHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace neptunedata
103} // namespace Aws
DeleteMLEndpointRequest & WithClean(bool value)
AWS_NEPTUNEDATA_API DeleteMLEndpointRequest()=default
DeleteMLEndpointRequest & WithId(IdT &&value)
AWS_NEPTUNEDATA_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteMLEndpointRequest & WithNeptuneIamRoleArn(NeptuneIamRoleArnT &&value)
AWS_NEPTUNEDATA_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String