AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteEndpointRequest.h
1
6#pragma once
7#include <aws/s3outposts/S3Outposts_EXPORTS.h>
8#include <aws/s3outposts/S3OutpostsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace S3Outposts
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_S3OUTPOSTS_API DeleteEndpointRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DeleteEndpoint"; }
35
36 AWS_S3OUTPOSTS_API Aws::String SerializePayload() const override;
37
38 AWS_S3OUTPOSTS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetEndpointId() const{ return m_endpointId; }
46 inline bool EndpointIdHasBeenSet() const { return m_endpointIdHasBeenSet; }
47 inline void SetEndpointId(const Aws::String& value) { m_endpointIdHasBeenSet = true; m_endpointId = value; }
48 inline void SetEndpointId(Aws::String&& value) { m_endpointIdHasBeenSet = true; m_endpointId = std::move(value); }
49 inline void SetEndpointId(const char* value) { m_endpointIdHasBeenSet = true; m_endpointId.assign(value); }
50 inline DeleteEndpointRequest& WithEndpointId(const Aws::String& value) { SetEndpointId(value); return *this;}
51 inline DeleteEndpointRequest& WithEndpointId(Aws::String&& value) { SetEndpointId(std::move(value)); return *this;}
52 inline DeleteEndpointRequest& WithEndpointId(const char* value) { SetEndpointId(value); return *this;}
54
56
59 inline const Aws::String& GetOutpostId() const{ return m_outpostId; }
60 inline bool OutpostIdHasBeenSet() const { return m_outpostIdHasBeenSet; }
61 inline void SetOutpostId(const Aws::String& value) { m_outpostIdHasBeenSet = true; m_outpostId = value; }
62 inline void SetOutpostId(Aws::String&& value) { m_outpostIdHasBeenSet = true; m_outpostId = std::move(value); }
63 inline void SetOutpostId(const char* value) { m_outpostIdHasBeenSet = true; m_outpostId.assign(value); }
64 inline DeleteEndpointRequest& WithOutpostId(const Aws::String& value) { SetOutpostId(value); return *this;}
65 inline DeleteEndpointRequest& WithOutpostId(Aws::String&& value) { SetOutpostId(std::move(value)); return *this;}
66 inline DeleteEndpointRequest& WithOutpostId(const char* value) { SetOutpostId(value); return *this;}
68 private:
69
70 Aws::String m_endpointId;
71 bool m_endpointIdHasBeenSet = false;
72
73 Aws::String m_outpostId;
74 bool m_outpostIdHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace S3Outposts
79} // namespace Aws
AWS_S3OUTPOSTS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteEndpointRequest & WithOutpostId(Aws::String &&value)
DeleteEndpointRequest & WithEndpointId(const char *value)
virtual const char * GetServiceRequestName() const override
DeleteEndpointRequest & WithEndpointId(Aws::String &&value)
DeleteEndpointRequest & WithEndpointId(const Aws::String &value)
DeleteEndpointRequest & WithOutpostId(const Aws::String &value)
AWS_S3OUTPOSTS_API Aws::String SerializePayload() const override
DeleteEndpointRequest & WithOutpostId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String