Skip to content

Commit bf3c4a8

Browse files
Add support for eventsConfig for CreateSolution, UpdateSolution, DescribeSolution, DescribeSolutionVersion. Add support for GetSolutionMetrics to return weighted NDCG metrics when eventsConfig is enabled for the solution.
Add input validations for multiple Glue APIs This launch enables customers to manage contents of their remote directories, by deleting old files or moving files to archive folders in remote servers once they have been retrieved. Customers will be able to automate the process using event-driven architecture. New options for how to handle harmful content detected by Amazon Bedrock Guardrails. AWS CodeBuild now offers an enhanced debugging experience. New options for how to handle harmful content detected by Amazon Bedrock Guardrails. AWS Elemental MediaLive now supports SDI inputs to MediaLive Anywhere Channels in workflows that use AWS SDKs.
1 parent 7d44d3a commit bf3c4a8

File tree

227 files changed

+13479
-889
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+13479
-889
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.541
1+
1.11.542

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/TransferClient.h

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,11 @@ namespace Transfer
995995

996996
/**
997997
* <p>Imports the signing and encryption certificates that you need to create local
998-
* (AS2) profiles and partner profiles.</p><p><h3>See Also:</h3> <a
998+
* (AS2) profiles and partner profiles.</p> <p>You can import both the certificate
999+
* and its chain in the <code>Certificate</code> parameter.</p> <p>If you
1000+
* use the <code>Certificate</code> parameter to upload both the certificate and
1001+
* its chain, don't use the <code>CertificateChain</code> parameter.</p>
1002+
* <p><h3>See Also:</h3> <a
9991003
* href="http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ImportCertificate">AWS
10001004
* API Reference</a></p>
10011005
*/
@@ -1579,6 +1583,58 @@ namespace Transfer
15791583
return SubmitAsync(&TransferClient::StartFileTransfer, request, handler, context);
15801584
}
15811585

1586+
/**
1587+
* <p>Deletes a file or directory on the remote SFTP server.</p><p><h3>See
1588+
* Also:</h3> <a
1589+
* href="http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteDelete">AWS
1590+
* API Reference</a></p>
1591+
*/
1592+
virtual Model::StartRemoteDeleteOutcome StartRemoteDelete(const Model::StartRemoteDeleteRequest& request) const;
1593+
1594+
/**
1595+
* A Callable wrapper for StartRemoteDelete that returns a future to the operation so that it can be executed in parallel to other requests.
1596+
*/
1597+
template<typename StartRemoteDeleteRequestT = Model::StartRemoteDeleteRequest>
1598+
Model::StartRemoteDeleteOutcomeCallable StartRemoteDeleteCallable(const StartRemoteDeleteRequestT& request) const
1599+
{
1600+
return SubmitCallable(&TransferClient::StartRemoteDelete, request);
1601+
}
1602+
1603+
/**
1604+
* An Async wrapper for StartRemoteDelete that queues the request into a thread executor and triggers associated callback when operation has finished.
1605+
*/
1606+
template<typename StartRemoteDeleteRequestT = Model::StartRemoteDeleteRequest>
1607+
void StartRemoteDeleteAsync(const StartRemoteDeleteRequestT& request, const StartRemoteDeleteResponseReceivedHandler& handler, const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const
1608+
{
1609+
return SubmitAsync(&TransferClient::StartRemoteDelete, request, handler, context);
1610+
}
1611+
1612+
/**
1613+
* <p>Moves or renames a file or directory on the remote SFTP server.</p><p><h3>See
1614+
* Also:</h3> <a
1615+
* href="http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/StartRemoteMove">AWS
1616+
* API Reference</a></p>
1617+
*/
1618+
virtual Model::StartRemoteMoveOutcome StartRemoteMove(const Model::StartRemoteMoveRequest& request) const;
1619+
1620+
/**
1621+
* A Callable wrapper for StartRemoteMove that returns a future to the operation so that it can be executed in parallel to other requests.
1622+
*/
1623+
template<typename StartRemoteMoveRequestT = Model::StartRemoteMoveRequest>
1624+
Model::StartRemoteMoveOutcomeCallable StartRemoteMoveCallable(const StartRemoteMoveRequestT& request) const
1625+
{
1626+
return SubmitCallable(&TransferClient::StartRemoteMove, request);
1627+
}
1628+
1629+
/**
1630+
* An Async wrapper for StartRemoteMove that queues the request into a thread executor and triggers associated callback when operation has finished.
1631+
*/
1632+
template<typename StartRemoteMoveRequestT = Model::StartRemoteMoveRequest>
1633+
void StartRemoteMoveAsync(const StartRemoteMoveRequestT& request, const StartRemoteMoveResponseReceivedHandler& handler, const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const
1634+
{
1635+
return SubmitAsync(&TransferClient::StartRemoteMove, request, handler, context);
1636+
}
1637+
15821638
/**
15831639
* <p>Changes the state of a file transfer protocol-enabled server from
15841640
* <code>OFFLINE</code> to <code>ONLINE</code>. It has no impact on a server that

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/TransferServiceClientModel.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@
5959
#include <aws/awstransfer/model/SendWorkflowStepStateResult.h>
6060
#include <aws/awstransfer/model/StartDirectoryListingResult.h>
6161
#include <aws/awstransfer/model/StartFileTransferResult.h>
62+
#include <aws/awstransfer/model/StartRemoteDeleteResult.h>
63+
#include <aws/awstransfer/model/StartRemoteMoveResult.h>
6264
#include <aws/awstransfer/model/TestConnectionResult.h>
6365
#include <aws/awstransfer/model/TestIdentityProviderResult.h>
6466
#include <aws/awstransfer/model/UpdateAccessResult.h>
@@ -173,6 +175,8 @@ namespace Aws
173175
class SendWorkflowStepStateRequest;
174176
class StartDirectoryListingRequest;
175177
class StartFileTransferRequest;
178+
class StartRemoteDeleteRequest;
179+
class StartRemoteMoveRequest;
176180
class StartServerRequest;
177181
class StopServerRequest;
178182
class TagResourceRequest;
@@ -245,6 +249,8 @@ namespace Aws
245249
typedef Aws::Utils::Outcome<SendWorkflowStepStateResult, TransferError> SendWorkflowStepStateOutcome;
246250
typedef Aws::Utils::Outcome<StartDirectoryListingResult, TransferError> StartDirectoryListingOutcome;
247251
typedef Aws::Utils::Outcome<StartFileTransferResult, TransferError> StartFileTransferOutcome;
252+
typedef Aws::Utils::Outcome<StartRemoteDeleteResult, TransferError> StartRemoteDeleteOutcome;
253+
typedef Aws::Utils::Outcome<StartRemoteMoveResult, TransferError> StartRemoteMoveOutcome;
248254
typedef Aws::Utils::Outcome<Aws::NoResult, TransferError> StartServerOutcome;
249255
typedef Aws::Utils::Outcome<Aws::NoResult, TransferError> StopServerOutcome;
250256
typedef Aws::Utils::Outcome<Aws::NoResult, TransferError> TagResourceOutcome;
@@ -317,6 +323,8 @@ namespace Aws
317323
typedef std::future<SendWorkflowStepStateOutcome> SendWorkflowStepStateOutcomeCallable;
318324
typedef std::future<StartDirectoryListingOutcome> StartDirectoryListingOutcomeCallable;
319325
typedef std::future<StartFileTransferOutcome> StartFileTransferOutcomeCallable;
326+
typedef std::future<StartRemoteDeleteOutcome> StartRemoteDeleteOutcomeCallable;
327+
typedef std::future<StartRemoteMoveOutcome> StartRemoteMoveOutcomeCallable;
320328
typedef std::future<StartServerOutcome> StartServerOutcomeCallable;
321329
typedef std::future<StopServerOutcome> StopServerOutcomeCallable;
322330
typedef std::future<TagResourceOutcome> TagResourceOutcomeCallable;
@@ -392,6 +400,8 @@ namespace Aws
392400
typedef std::function<void(const TransferClient*, const Model::SendWorkflowStepStateRequest&, const Model::SendWorkflowStepStateOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > SendWorkflowStepStateResponseReceivedHandler;
393401
typedef std::function<void(const TransferClient*, const Model::StartDirectoryListingRequest&, const Model::StartDirectoryListingOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StartDirectoryListingResponseReceivedHandler;
394402
typedef std::function<void(const TransferClient*, const Model::StartFileTransferRequest&, const Model::StartFileTransferOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StartFileTransferResponseReceivedHandler;
403+
typedef std::function<void(const TransferClient*, const Model::StartRemoteDeleteRequest&, const Model::StartRemoteDeleteOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StartRemoteDeleteResponseReceivedHandler;
404+
typedef std::function<void(const TransferClient*, const Model::StartRemoteMoveRequest&, const Model::StartRemoteMoveOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StartRemoteMoveResponseReceivedHandler;
395405
typedef std::function<void(const TransferClient*, const Model::StartServerRequest&, const Model::StartServerOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StartServerResponseReceivedHandler;
396406
typedef std::function<void(const TransferClient*, const Model::StopServerRequest&, const Model::StopServerOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > StopServerResponseReceivedHandler;
397407
typedef std::function<void(const TransferClient*, const Model::TagResourceRequest&, const Model::TagResourceOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&) > TagResourceResponseReceivedHandler;

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/As2ConnectorConfig.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,13 @@ namespace Model
132132

133133
///@{
134134
/**
135-
* <p>Used for outbound requests (from an Transfer Family server to a partner AS2
136-
* server) to determine whether the partner response for transfers is synchronous
137-
* or asynchronous. Specify either of the following values:</p> <ul> <li> <p>
138-
* <code>SYNC</code>: The system expects a synchronous MDN response, confirming
139-
* that the file was transferred successfully (or not).</p> </li> <li> <p>
140-
* <code>NONE</code>: Specifies that no MDN response is required.</p> </li> </ul>
135+
* <p>Used for outbound requests (from an Transfer Family connector to a partner
136+
* AS2 server) to determine whether the partner response for transfers is
137+
* synchronous or asynchronous. Specify either of the following values:</p> <ul>
138+
* <li> <p> <code>SYNC</code>: The system expects a synchronous MDN response,
139+
* confirming that the file was transferred successfully (or not).</p> </li> <li>
140+
* <p> <code>NONE</code>: Specifies that no MDN response is required.</p> </li>
141+
* </ul>
141142
*/
142143
inline MdnResponse GetMdnResponse() const { return m_mdnResponse; }
143144
inline bool MdnResponseHasBeenSet() const { return m_mdnResponseHasBeenSet; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/CreateServerRequest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ namespace Model
211211
/**
212212
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM)
213213
* role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or
214-
* Amazon EFSevents. When set, you can view user activity in your CloudWatch
214+
* Amazon EFS events. When set, you can view user activity in your CloudWatch
215215
* logs.</p>
216216
*/
217217
inline const Aws::String& GetLoggingRole() const { return m_loggingRole; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/DescribedCertificate.h

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,15 @@ namespace Model
8484

8585
///@{
8686
/**
87-
* <p>Currently, the only available status is <code>ACTIVE</code>: all other values
88-
* are reserved for future use.</p>
87+
* <p>A certificate's status can be either <code>ACTIVE</code> or
88+
* <code>INACTIVE</code>.</p> <p>You can set <code>ActiveDate</code> and
89+
* <code>InactiveDate</code> in the <code>UpdateCertificate</code> call. If you set
90+
* values for these parameters, those values are used to determine whether the
91+
* certificate has a status of <code>ACTIVE</code> or <code>INACTIVE</code>.</p>
92+
* <p>If you don't set values for <code>ActiveDate</code> and
93+
* <code>InactiveDate</code>, we use the <code>NotBefore</code> and
94+
* <code>NotAfter</code> date as specified on the X509 certificate to determine
95+
* when a certificate is active and when it is inactive.</p>
8996
*/
9097
inline CertificateStatusType GetStatus() const { return m_status; }
9198
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
@@ -119,7 +126,9 @@ namespace Model
119126

120127
///@{
121128
/**
122-
* <p>An optional date that specifies when the certificate becomes active.</p>
129+
* <p>An optional date that specifies when the certificate becomes active. If you
130+
* do not specify a value, <code>ActiveDate</code> takes the same value as
131+
* <code>NotBeforeDate</code>, which is specified by the CA. </p>
123132
*/
124133
inline const Aws::Utils::DateTime& GetActiveDate() const { return m_activeDate; }
125134
inline bool ActiveDateHasBeenSet() const { return m_activeDateHasBeenSet; }
@@ -131,7 +140,9 @@ namespace Model
131140

132141
///@{
133142
/**
134-
* <p>An optional date that specifies when the certificate becomes inactive.</p>
143+
* <p>An optional date that specifies when the certificate becomes inactive. If you
144+
* do not specify a value, <code>InactiveDate</code> takes the same value as
145+
* <code>NotAfterDate</code>, which is specified by the CA.</p>
135146
*/
136147
inline const Aws::Utils::DateTime& GetInactiveDate() const { return m_inactiveDate; }
137148
inline bool InactiveDateHasBeenSet() const { return m_inactiveDateHasBeenSet; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/DescribedServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ namespace Model
202202
/**
203203
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM)
204204
* role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or
205-
* Amazon EFSevents. When set, you can view user activity in your CloudWatch
205+
* Amazon EFS events. When set, you can view user activity in your CloudWatch
206206
* logs.</p>
207207
*/
208208
inline const Aws::String& GetLoggingRole() const { return m_loggingRole; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/ImportCertificateRequest.h

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,11 @@ namespace Model
5858
* For example, <code>--certificate file://encryption-cert.pem</code>.
5959
* Alternatively, you can provide the raw content.</p> </li> <li> <p>For the SDK,
6060
* specify the raw content of a certificate file. For example, <code>--certificate
61-
* "`cat encryption-cert.pem`"</code>.</p> </li> </ul>
61+
* "`cat encryption-cert.pem`"</code>.</p> </li> </ul> <p>You can provide
62+
* both the certificate and its chain in this parameter, without needing to use the
63+
* <code>CertificateChain</code> parameter. If you use this parameter for both the
64+
* certificate and its chain, do not use the <code>CertificateChain</code>
65+
* parameter.</p>
6266
*/
6367
inline const Aws::String& GetCertificate() const { return m_certificate; }
6468
inline bool CertificateHasBeenSet() const { return m_certificateHasBeenSet; }
@@ -83,8 +87,8 @@ namespace Model
8387

8488
///@{
8589
/**
86-
* <ul> <li> <p>For the CLI, provide a file path for a private key in URI
87-
* format.For example, <code>--private-key file://encryption-key.pem</code>.
90+
* <ul> <li> <p>For the CLI, provide a file path for a private key in URI format.
91+
* For example, <code>--private-key file://encryption-key.pem</code>.
8892
* Alternatively, you can provide the raw content of the private key file.</p>
8993
* </li> <li> <p>For the SDK, specify the raw content of a private key file. For
9094
* example, <code>--private-key "`cat encryption-key.pem`"</code> </p> </li> </ul>
@@ -99,7 +103,9 @@ namespace Model
99103

100104
///@{
101105
/**
102-
* <p>An optional date that specifies when the certificate becomes active.</p>
106+
* <p>An optional date that specifies when the certificate becomes active. If you
107+
* do not specify a value, <code>ActiveDate</code> takes the same value as
108+
* <code>NotBeforeDate</code>, which is specified by the CA. </p>
103109
*/
104110
inline const Aws::Utils::DateTime& GetActiveDate() const { return m_activeDate; }
105111
inline bool ActiveDateHasBeenSet() const { return m_activeDateHasBeenSet; }
@@ -111,7 +117,9 @@ namespace Model
111117

112118
///@{
113119
/**
114-
* <p>An optional date that specifies when the certificate becomes inactive.</p>
120+
* <p>An optional date that specifies when the certificate becomes inactive. If you
121+
* do not specify a value, <code>InactiveDate</code> takes the same value as
122+
* <code>NotAfterDate</code>, which is specified by the CA.</p>
115123
*/
116124
inline const Aws::Utils::DateTime& GetInactiveDate() const { return m_inactiveDate; }
117125
inline bool InactiveDateHasBeenSet() const { return m_inactiveDateHasBeenSet; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/ListedCertificate.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ namespace Model
9595

9696
///@{
9797
/**
98-
* <p>An optional date that specifies when the certificate becomes active.</p>
98+
* <p>An optional date that specifies when the certificate becomes active. If you
99+
* do not specify a value, <code>ActiveDate</code> takes the same value as
100+
* <code>NotBeforeDate</code>, which is specified by the CA. </p>
99101
*/
100102
inline const Aws::Utils::DateTime& GetActiveDate() const { return m_activeDate; }
101103
inline bool ActiveDateHasBeenSet() const { return m_activeDateHasBeenSet; }
@@ -107,7 +109,9 @@ namespace Model
107109

108110
///@{
109111
/**
110-
* <p>An optional date that specifies when the certificate becomes inactive.</p>
112+
* <p>An optional date that specifies when the certificate becomes inactive. If you
113+
* do not specify a value, <code>InactiveDate</code> takes the same value as
114+
* <code>NotAfterDate</code>, which is specified by the CA.</p>
111115
*/
112116
inline const Aws::Utils::DateTime& GetInactiveDate() const { return m_inactiveDate; }
113117
inline bool InactiveDateHasBeenSet() const { return m_inactiveDateHasBeenSet; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/ListedServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ namespace Model
108108
/**
109109
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM)
110110
* role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or
111-
* Amazon EFSevents. When set, you can view user activity in your CloudWatch
111+
* Amazon EFS events. When set, you can view user activity in your CloudWatch
112112
* logs.</p>
113113
*/
114114
inline const Aws::String& GetLoggingRole() const { return m_loggingRole; }

generated/src/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/LoggingConfiguration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace Model
4242
/**
4343
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM)
4444
* role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 or
45-
* Amazon EFSevents. When set, you can view user activity in your CloudWatch
45+
* Amazon EFS events. When set, you can view user activity in your CloudWatch
4646
* logs.</p>
4747
*/
4848
inline const Aws::String& GetLoggingRole() const { return m_loggingRole; }
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/**
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0.
4+
*/
5+
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+
12+
namespace Aws
13+
{
14+
namespace Transfer
15+
{
16+
namespace Model
17+
{
18+
19+
/**
20+
*/
21+
class StartRemoteDeleteRequest : public TransferRequest
22+
{
23+
public:
24+
AWS_TRANSFER_API StartRemoteDeleteRequest() = 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 "StartRemoteDelete"; }
31+
32+
AWS_TRANSFER_API Aws::String SerializePayload() const override;
33+
34+
AWS_TRANSFER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35+
36+
37+
///@{
38+
/**
39+
* <p>The unique identifier for the connector.</p>
40+
*/
41+
inline const Aws::String& GetConnectorId() const { return m_connectorId; }
42+
inline bool ConnectorIdHasBeenSet() const { return m_connectorIdHasBeenSet; }
43+
template<typename ConnectorIdT = Aws::String>
44+
void SetConnectorId(ConnectorIdT&& value) { m_connectorIdHasBeenSet = true; m_connectorId = std::forward<ConnectorIdT>(value); }
45+
template<typename ConnectorIdT = Aws::String>
46+
StartRemoteDeleteRequest& WithConnectorId(ConnectorIdT&& value) { SetConnectorId(std::forward<ConnectorIdT>(value)); return *this;}
47+
///@}
48+
49+
///@{
50+
/**
51+
* <p>The absolute path of the file or directory to delete. You can only specify
52+
* one path per call to this operation.</p>
53+
*/
54+
inline const Aws::String& GetDeletePath() const { return m_deletePath; }
55+
inline bool DeletePathHasBeenSet() const { return m_deletePathHasBeenSet; }
56+
template<typename DeletePathT = Aws::String>
57+
void SetDeletePath(DeletePathT&& value) { m_deletePathHasBeenSet = true; m_deletePath = std::forward<DeletePathT>(value); }
58+
template<typename DeletePathT = Aws::String>
59+
StartRemoteDeleteRequest& WithDeletePath(DeletePathT&& value) { SetDeletePath(std::forward<DeletePathT>(value)); return *this;}
60+
///@}
61+
private:
62+
63+
Aws::String m_connectorId;
64+
bool m_connectorIdHasBeenSet = false;
65+
66+
Aws::String m_deletePath;
67+
bool m_deletePathHasBeenSet = false;
68+
};
69+
70+
} // namespace Model
71+
} // namespace Transfer
72+
} // namespace Aws

0 commit comments

Comments
 (0)