AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteHostKeyRequest.h
1
6#pragma once
7#include <aws/awstransfer/Transfer_EXPORTS.h>
8#include <aws/awstransfer/TransferRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Transfer
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_TRANSFER_API DeleteHostKeyRequest();
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 "DeleteHostKey"; }
31
32 AWS_TRANSFER_API Aws::String SerializePayload() const override;
33
35
36
38
42 inline const Aws::String& GetServerId() const{ return m_serverId; }
43 inline bool ServerIdHasBeenSet() const { return m_serverIdHasBeenSet; }
44 inline void SetServerId(const Aws::String& value) { m_serverIdHasBeenSet = true; m_serverId = value; }
45 inline void SetServerId(Aws::String&& value) { m_serverIdHasBeenSet = true; m_serverId = std::move(value); }
46 inline void SetServerId(const char* value) { m_serverIdHasBeenSet = true; m_serverId.assign(value); }
47 inline DeleteHostKeyRequest& WithServerId(const Aws::String& value) { SetServerId(value); return *this;}
48 inline DeleteHostKeyRequest& WithServerId(Aws::String&& value) { SetServerId(std::move(value)); return *this;}
49 inline DeleteHostKeyRequest& WithServerId(const char* value) { SetServerId(value); return *this;}
51
53
56 inline const Aws::String& GetHostKeyId() const{ return m_hostKeyId; }
57 inline bool HostKeyIdHasBeenSet() const { return m_hostKeyIdHasBeenSet; }
58 inline void SetHostKeyId(const Aws::String& value) { m_hostKeyIdHasBeenSet = true; m_hostKeyId = value; }
59 inline void SetHostKeyId(Aws::String&& value) { m_hostKeyIdHasBeenSet = true; m_hostKeyId = std::move(value); }
60 inline void SetHostKeyId(const char* value) { m_hostKeyIdHasBeenSet = true; m_hostKeyId.assign(value); }
61 inline DeleteHostKeyRequest& WithHostKeyId(const Aws::String& value) { SetHostKeyId(value); return *this;}
62 inline DeleteHostKeyRequest& WithHostKeyId(Aws::String&& value) { SetHostKeyId(std::move(value)); return *this;}
63 inline DeleteHostKeyRequest& WithHostKeyId(const char* value) { SetHostKeyId(value); return *this;}
65 private:
66
67 Aws::String m_serverId;
68 bool m_serverIdHasBeenSet = false;
69
70 Aws::String m_hostKeyId;
71 bool m_hostKeyIdHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace Transfer
76} // namespace Aws
virtual const char * GetServiceRequestName() const override
DeleteHostKeyRequest & WithHostKeyId(const Aws::String &value)
AWS_TRANSFER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_TRANSFER_API Aws::String SerializePayload() const override
DeleteHostKeyRequest & WithServerId(const Aws::String &value)
DeleteHostKeyRequest & WithHostKeyId(const char *value)
void SetHostKeyId(const Aws::String &value)
DeleteHostKeyRequest & WithServerId(Aws::String &&value)
DeleteHostKeyRequest & WithServerId(const char *value)
DeleteHostKeyRequest & WithHostKeyId(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String