AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
StartRemoteDeleteRequest.h
1
6#pragma once
7#include <aws/awstransfer/TransferRequest.h>
8#include <aws/awstransfer/Transfer_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Transfer {
15namespace Model {
16
20 public:
21 AWS_TRANSFER_API StartRemoteDeleteRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "StartRemoteDelete"; }
28
29 AWS_TRANSFER_API Aws::String SerializePayload() const override;
30
32
34
37 inline const Aws::String& GetConnectorId() const { return m_connectorId; }
38 inline bool ConnectorIdHasBeenSet() const { return m_connectorIdHasBeenSet; }
39 template <typename ConnectorIdT = Aws::String>
40 void SetConnectorId(ConnectorIdT&& value) {
41 m_connectorIdHasBeenSet = true;
42 m_connectorId = std::forward<ConnectorIdT>(value);
43 }
44 template <typename ConnectorIdT = Aws::String>
46 SetConnectorId(std::forward<ConnectorIdT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetDeletePath() const { return m_deletePath; }
57 inline bool DeletePathHasBeenSet() const { return m_deletePathHasBeenSet; }
58 template <typename DeletePathT = Aws::String>
59 void SetDeletePath(DeletePathT&& value) {
60 m_deletePathHasBeenSet = true;
61 m_deletePath = std::forward<DeletePathT>(value);
62 }
63 template <typename DeletePathT = Aws::String>
65 SetDeletePath(std::forward<DeletePathT>(value));
66 return *this;
67 }
69 private:
70 Aws::String m_connectorId;
71
72 Aws::String m_deletePath;
73 bool m_connectorIdHasBeenSet = false;
74 bool m_deletePathHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace Transfer
79} // namespace Aws
virtual const char * GetServiceRequestName() const override
StartRemoteDeleteRequest & WithDeletePath(DeletePathT &&value)
AWS_TRANSFER_API StartRemoteDeleteRequest()=default
StartRemoteDeleteRequest & WithConnectorId(ConnectorIdT &&value)
AWS_TRANSFER_API Aws::String SerializePayload() const override
AWS_TRANSFER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String