Skip to content

Commit 1e6b979

Browse files
Updating the desired url for PutEmailIdentityDkimSigningAttributes from v1 to v2
Adding Verification API's to Partner Central Account SDK. Updating stop-task API to encapsulate containers with custom stop signal This release adds a new ScanStatus called "Unsupported Code Artifacts". This ScanStatus will be returned when a Lambda function was not code scanned because it has unsupported code artifacts. Adding the ExpirationTime attribute to the delegation request resource.
1 parent af9a2fc commit 1e6b979

File tree

47 files changed

+2244
-147
lines changed

Some content is hidden

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

47 files changed

+2244
-147
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.704
1+
1.11.705

generated/src/aws-cpp-sdk-ecs/include/aws/ecs/ECSClient.h

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1865,12 +1865,14 @@ class AWS_ECS_API ECSClient : public Aws::Client::AWSJsonClient, public Aws::Cli
18651865
* <p>Stops a running task. Any tags associated with the task will be deleted.</p>
18661866
* <p>When you call <code>StopTask</code> on a task, the equivalent of <code>docker
18671867
* stop</code> is issued to the containers running in the task. This results in a
1868-
* <code>SIGTERM</code> value and a default 30-second timeout, after which the
1869-
* <code>SIGKILL</code> value is sent and the containers are forcibly stopped. If
1870-
* the container handles the <code>SIGTERM</code> value gracefully and exits within
1871-
* 30 seconds from receiving it, no <code>SIGKILL</code> value is sent.</p> <p>For
1872-
* Windows containers, POSIX signals do not work and runtime stops the container by
1873-
* sending a <code>CTRL_SHUTDOWN_EVENT</code>. For more information, see <a
1868+
* stop signal value and a default 30-second timeout, after which the
1869+
* <code>SIGKILL</code> value is sent and the containers are forcibly stopped. This
1870+
* signal can be defined in your container image with the <code>STOPSIGNAL</code>
1871+
* instruction and will default to <code>SIGTERM</code>. If the container handles
1872+
* the <code>SIGTERM</code> value gracefully and exits within 30 seconds from
1873+
* receiving it, no <code>SIGKILL</code> value is sent.</p> <p>For Windows
1874+
* containers, POSIX signals do not work and runtime stops the container by sending
1875+
* a <code>CTRL_SHUTDOWN_EVENT</code>. For more information, see <a
18741876
* href="https://github.com/moby/moby/issues/25982">Unable to react to graceful
18751877
* shutdown of (Windows) container #25982</a> on GitHub.</p> <p>The default
18761878
* 30-second timeout can be configured on the Amazon ECS container agent with the

generated/src/aws-cpp-sdk-iam/include/aws/iam/model/DelegationRequest.h

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ class DelegationRequest {
216216
///@{
217217
/**
218218
* <p>The state of this delegation request.</p> <p>See the <a
219-
* href="IAM/latest/UserGuide/temporary-delegation-building-integration.html">Understanding
219+
* href="IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding
220220
* the Request Lifecycle</a> for an explanation of how these states are
221221
* transitioned.</p>
222222
*/
@@ -232,6 +232,27 @@ class DelegationRequest {
232232
}
233233
///@}
234234

235+
///@{
236+
/**
237+
* <p>The expiry time of this delegation request</p> <p>See the <a
238+
* href="IAM/latest/UserGuide/temporary-delegation-building-integration.html#temporary-delegation-request-lifecycle">Understanding
239+
* the Request Lifecycle</a> for details on the life time of a delegation request
240+
* at each state.</p>
241+
*/
242+
inline const Aws::Utils::DateTime& GetExpirationTime() const { return m_expirationTime; }
243+
inline bool ExpirationTimeHasBeenSet() const { return m_expirationTimeHasBeenSet; }
244+
template <typename ExpirationTimeT = Aws::Utils::DateTime>
245+
void SetExpirationTime(ExpirationTimeT&& value) {
246+
m_expirationTimeHasBeenSet = true;
247+
m_expirationTime = std::forward<ExpirationTimeT>(value);
248+
}
249+
template <typename ExpirationTimeT = Aws::Utils::DateTime>
250+
DelegationRequest& WithExpirationTime(ExpirationTimeT&& value) {
251+
SetExpirationTime(std::forward<ExpirationTimeT>(value));
252+
return *this;
253+
}
254+
///@}
255+
235256
///@{
236257
/**
237258
* <p>Identity of the requestor of this delegation request. This will be an Amazon
@@ -431,6 +452,9 @@ class DelegationRequest {
431452
StateType m_state{StateType::NOT_SET};
432453
bool m_stateHasBeenSet = false;
433454

455+
Aws::Utils::DateTime m_expirationTime{};
456+
bool m_expirationTimeHasBeenSet = false;
457+
434458
Aws::String m_requestorId;
435459
bool m_requestorIdHasBeenSet = false;
436460

generated/src/aws-cpp-sdk-iam/source/model/DelegationRequest.cpp

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ DelegationRequest& DelegationRequest::operator=(const XmlNode& xmlNode) {
7979
m_state = StateTypeMapper::GetStateTypeForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()).c_str()));
8080
m_stateHasBeenSet = true;
8181
}
82+
XmlNode expirationTimeNode = resultNode.FirstChild("ExpirationTime");
83+
if (!expirationTimeNode.IsNull()) {
84+
m_expirationTime = DateTime(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(expirationTimeNode.GetText()).c_str()).c_str(),
85+
Aws::Utils::DateFormat::ISO_8601);
86+
m_expirationTimeHasBeenSet = true;
87+
}
8288
XmlNode requestorIdNode = resultNode.FirstChild("RequestorId");
8389
if (!requestorIdNode.IsNull()) {
8490
m_requestorId = Aws::Utils::Xml::DecodeEscapedXmlText(requestorIdNode.GetText());
@@ -182,6 +188,11 @@ void DelegationRequest::OutputToStream(Aws::OStream& oStream, const char* locati
182188
<< "&";
183189
}
184190

191+
if (m_expirationTimeHasBeenSet) {
192+
oStream << location << index << locationValue
193+
<< ".ExpirationTime=" << StringUtils::URLEncode(m_expirationTime.ToGmtString(Aws::Utils::DateFormat::ISO_8601).c_str()) << "&";
194+
}
195+
185196
if (m_requestorIdHasBeenSet) {
186197
oStream << location << index << locationValue << ".RequestorId=" << StringUtils::URLEncode(m_requestorId.c_str()) << "&";
187198
}
@@ -258,6 +269,10 @@ void DelegationRequest::OutputToStream(Aws::OStream& oStream, const char* locati
258269
if (m_stateHasBeenSet) {
259270
oStream << location << ".State=" << StringUtils::URLEncode(StateTypeMapper::GetNameForStateType(m_state)) << "&";
260271
}
272+
if (m_expirationTimeHasBeenSet) {
273+
oStream << location
274+
<< ".ExpirationTime=" << StringUtils::URLEncode(m_expirationTime.ToGmtString(Aws::Utils::DateFormat::ISO_8601).c_str()) << "&";
275+
}
261276
if (m_requestorIdHasBeenSet) {
262277
oStream << location << ".RequestorId=" << StringUtils::URLEncode(m_requestorId.c_str()) << "&";
263278
}

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/model/ScanStatus.h

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,15 @@ class ScanStatus {
112112
* please use the following SSM automation to remediate the issue: <a
113113
* href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html">https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-awssupport-troubleshoot-managed-instance.html</a>.
114114
* Once the instance becomes managed by SSM, Inspector will automatically begin
115-
* scanning this instance. </p> <p> <code>UNSUPPORTED_CONFIG_FILE</code> - Reserved
116-
* for future use.</p> <p> <code>UNSUPPORTED_LANGUAGE</code> - The scan was
117-
* unsuccessful because the repository contains files in an unsupported programming
118-
* language.</p> <p> <code>UNSUPPORTED_MEDIA_TYPE </code>- The ECR image has an
119-
* unsupported media type.</p> <p> <code>UNSUPPORTED_OS</code> - Amazon Inspector
120-
* does not support this OS, architecture, or image manifest type at this time. To
121-
* see a complete list of supported operating systems see: <a href="
115+
* scanning this instance. </p> <p> <code>UNSUPPORTED_CODE_ARTIFACTS </code> - The
116+
* function was not scanned because it has an unsupported code artifacts.</p> <p>
117+
* <code>UNSUPPORTED_CONFIG_FILE</code> - Reserved for future use.</p> <p>
118+
* <code>UNSUPPORTED_LANGUAGE</code> - The scan was unsuccessful because the
119+
* repository contains files in an unsupported programming language.</p> <p>
120+
* <code>UNSUPPORTED_MEDIA_TYPE </code>- The ECR image has an unsupported media
121+
* type.</p> <p> <code>UNSUPPORTED_OS</code> - Amazon Inspector does not support
122+
* this OS, architecture, or image manifest type at this time. To see a complete
123+
* list of supported operating systems see: <a href="
122124
* https://docs.aws.amazon.com/inspector/latest/user/supported.html">https://docs.aws.amazon.com/inspector/latest/user/supported.html</a>.</p>
123125
* <p> <code>UNSUPPORTED_RUNTIME</code> - The function was not scanned because it
124126
* has an unsupported runtime. To see a complete list of supported runtimes see: <a

generated/src/aws-cpp-sdk-inspector2/include/aws/inspector2/model/ScanStatusReason.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ enum class ScanStatusReason {
4444
UNSUPPORTED_LANGUAGE,
4545
NO_SCAN_CONFIGURATION_ASSOCIATED,
4646
SCAN_IN_PROGRESS,
47-
IMAGE_ARCHIVED
47+
IMAGE_ARCHIVED,
48+
UNSUPPORTED_CODE_ARTIFACTS
4849
};
4950

5051
namespace ScanStatusReasonMapper {

generated/src/aws-cpp-sdk-inspector2/source/model/ScanStatusReason.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ static const int UNSUPPORTED_LANGUAGE_HASH = HashingUtils::HashString("UNSUPPORT
5252
static const int NO_SCAN_CONFIGURATION_ASSOCIATED_HASH = HashingUtils::HashString("NO_SCAN_CONFIGURATION_ASSOCIATED");
5353
static const int SCAN_IN_PROGRESS_HASH = HashingUtils::HashString("SCAN_IN_PROGRESS");
5454
static const int IMAGE_ARCHIVED_HASH = HashingUtils::HashString("IMAGE_ARCHIVED");
55+
static const int UNSUPPORTED_CODE_ARTIFACTS_HASH = HashingUtils::HashString("UNSUPPORTED_CODE_ARTIFACTS");
5556

5657
ScanStatusReason GetScanStatusReasonForName(const Aws::String& name) {
5758
int hashCode = HashingUtils::HashString(name.c_str());
@@ -121,6 +122,8 @@ ScanStatusReason GetScanStatusReasonForName(const Aws::String& name) {
121122
return ScanStatusReason::SCAN_IN_PROGRESS;
122123
} else if (hashCode == IMAGE_ARCHIVED_HASH) {
123124
return ScanStatusReason::IMAGE_ARCHIVED;
125+
} else if (hashCode == UNSUPPORTED_CODE_ARTIFACTS_HASH) {
126+
return ScanStatusReason::UNSUPPORTED_CODE_ARTIFACTS;
124127
}
125128
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
126129
if (overflowContainer) {
@@ -201,6 +204,8 @@ Aws::String GetNameForScanStatusReason(ScanStatusReason enumValue) {
201204
return "SCAN_IN_PROGRESS";
202205
case ScanStatusReason::IMAGE_ARCHIVED:
203206
return "IMAGE_ARCHIVED";
207+
case ScanStatusReason::UNSUPPORTED_CODE_ARTIFACTS:
208+
return "UNSUPPORTED_CODE_ARTIFACTS";
204209
default:
205210
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
206211
if (overflowContainer) {

generated/src/aws-cpp-sdk-partnercentral-account/include/aws/partnercentral-account/PartnerCentralAccountClient.h

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,34 @@ class AWS_PARTNERCENTRALACCOUNT_API PartnerCentralAccountClient
505505
return SubmitAsync(&PartnerCentralAccountClient::GetProfileVisibility, request, handler, context);
506506
}
507507

508+
/**
509+
* <p>Retrieves the current status and details of a verification process for a
510+
* partner account. This operation allows partners to check the progress and
511+
* results of business or registrant verification processes.</p><p><h3>See
512+
* Also:</h3> <a
513+
* href="http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetVerification">AWS
514+
* API Reference</a></p>
515+
*/
516+
virtual Model::GetVerificationOutcome GetVerification(const Model::GetVerificationRequest& request) const;
517+
518+
/**
519+
* A Callable wrapper for GetVerification that returns a future to the operation so that it can be executed in parallel to other requests.
520+
*/
521+
template <typename GetVerificationRequestT = Model::GetVerificationRequest>
522+
Model::GetVerificationOutcomeCallable GetVerificationCallable(const GetVerificationRequestT& request) const {
523+
return SubmitCallable(&PartnerCentralAccountClient::GetVerification, request);
524+
}
525+
526+
/**
527+
* An Async wrapper for GetVerification that queues the request into a thread executor and triggers associated callback when operation has
528+
* finished.
529+
*/
530+
template <typename GetVerificationRequestT = Model::GetVerificationRequest>
531+
void GetVerificationAsync(const GetVerificationRequestT& request, const GetVerificationResponseReceivedHandler& handler,
532+
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr) const {
533+
return SubmitAsync(&PartnerCentralAccountClient::GetVerification, request, handler, context);
534+
}
535+
508536
/**
509537
* <p>Lists connection invitations for the partner account, with optional filtering
510538
* by status, type, and other criteria.</p><p><h3>See Also:</h3> <a
@@ -755,6 +783,36 @@ class AWS_PARTNERCENTRALACCOUNT_API PartnerCentralAccountClient
755783
return SubmitAsync(&PartnerCentralAccountClient::StartProfileUpdateTask, request, handler, context);
756784
}
757785

786+
/**
787+
* <p>Initiates a new verification process for a partner account. This operation
788+
* begins the verification workflow for either business registration or individual
789+
* registrant identity verification as required by AWS Partner
790+
* Central.</p><p><h3>See Also:</h3> <a
791+
* href="http://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/StartVerification">AWS
792+
* API Reference</a></p>
793+
*/
794+
virtual Model::StartVerificationOutcome StartVerification(const Model::StartVerificationRequest& request = {}) const;
795+
796+
/**
797+
* A Callable wrapper for StartVerification that returns a future to the operation so that it can be executed in parallel to other
798+
* requests.
799+
*/
800+
template <typename StartVerificationRequestT = Model::StartVerificationRequest>
801+
Model::StartVerificationOutcomeCallable StartVerificationCallable(const StartVerificationRequestT& request = {}) const {
802+
return SubmitCallable(&PartnerCentralAccountClient::StartVerification, request);
803+
}
804+
805+
/**
806+
* An Async wrapper for StartVerification that queues the request into a thread executor and triggers associated callback when operation
807+
* has finished.
808+
*/
809+
template <typename StartVerificationRequestT = Model::StartVerificationRequest>
810+
void StartVerificationAsync(const StartVerificationResponseReceivedHandler& handler,
811+
const std::shared_ptr<const Aws::Client::AsyncCallerContext>& context = nullptr,
812+
const StartVerificationRequestT& request = {}) const {
813+
return SubmitAsync(&PartnerCentralAccountClient::StartVerification, request, handler, context);
814+
}
815+
758816
/**
759817
* <p>Adds or updates tags for a specified AWS Partner Central Account
760818
* resource.</p><p><h3>See Also:</h3> <a

generated/src/aws-cpp-sdk-partnercentral-account/include/aws/partnercentral-account/PartnerCentralAccountServiceClientModel.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include <aws/partnercentral-account/model/GetPartnerResult.h>
3535
#include <aws/partnercentral-account/model/GetProfileUpdateTaskResult.h>
3636
#include <aws/partnercentral-account/model/GetProfileVisibilityResult.h>
37+
#include <aws/partnercentral-account/model/GetVerificationResult.h>
3738
#include <aws/partnercentral-account/model/ListConnectionInvitationsResult.h>
3839
#include <aws/partnercentral-account/model/ListConnectionsResult.h>
3940
#include <aws/partnercentral-account/model/ListPartnersResult.h>
@@ -43,6 +44,8 @@
4344
#include <aws/partnercentral-account/model/RejectConnectionInvitationResult.h>
4445
#include <aws/partnercentral-account/model/SendEmailVerificationCodeResult.h>
4546
#include <aws/partnercentral-account/model/StartProfileUpdateTaskResult.h>
47+
#include <aws/partnercentral-account/model/StartVerificationRequest.h>
48+
#include <aws/partnercentral-account/model/StartVerificationResult.h>
4649
#include <aws/partnercentral-account/model/TagResourceResult.h>
4750
#include <aws/partnercentral-account/model/UntagResourceResult.h>
4851
#include <aws/partnercentral-account/model/UpdateConnectionPreferencesResult.h>
@@ -94,6 +97,7 @@ class GetConnectionPreferencesRequest;
9497
class GetPartnerRequest;
9598
class GetProfileUpdateTaskRequest;
9699
class GetProfileVisibilityRequest;
100+
class GetVerificationRequest;
97101
class ListConnectionInvitationsRequest;
98102
class ListConnectionsRequest;
99103
class ListPartnersRequest;
@@ -103,6 +107,7 @@ class PutProfileVisibilityRequest;
103107
class RejectConnectionInvitationRequest;
104108
class SendEmailVerificationCodeRequest;
105109
class StartProfileUpdateTaskRequest;
110+
class StartVerificationRequest;
106111
class TagResourceRequest;
107112
class UntagResourceRequest;
108113
class UpdateConnectionPreferencesRequest;
@@ -126,6 +131,7 @@ typedef Aws::Utils::Outcome<GetConnectionPreferencesResult, PartnerCentralAccoun
126131
typedef Aws::Utils::Outcome<GetPartnerResult, PartnerCentralAccountError> GetPartnerOutcome;
127132
typedef Aws::Utils::Outcome<GetProfileUpdateTaskResult, PartnerCentralAccountError> GetProfileUpdateTaskOutcome;
128133
typedef Aws::Utils::Outcome<GetProfileVisibilityResult, PartnerCentralAccountError> GetProfileVisibilityOutcome;
134+
typedef Aws::Utils::Outcome<GetVerificationResult, PartnerCentralAccountError> GetVerificationOutcome;
129135
typedef Aws::Utils::Outcome<ListConnectionInvitationsResult, PartnerCentralAccountError> ListConnectionInvitationsOutcome;
130136
typedef Aws::Utils::Outcome<ListConnectionsResult, PartnerCentralAccountError> ListConnectionsOutcome;
131137
typedef Aws::Utils::Outcome<ListPartnersResult, PartnerCentralAccountError> ListPartnersOutcome;
@@ -135,6 +141,7 @@ typedef Aws::Utils::Outcome<PutProfileVisibilityResult, PartnerCentralAccountErr
135141
typedef Aws::Utils::Outcome<RejectConnectionInvitationResult, PartnerCentralAccountError> RejectConnectionInvitationOutcome;
136142
typedef Aws::Utils::Outcome<SendEmailVerificationCodeResult, PartnerCentralAccountError> SendEmailVerificationCodeOutcome;
137143
typedef Aws::Utils::Outcome<StartProfileUpdateTaskResult, PartnerCentralAccountError> StartProfileUpdateTaskOutcome;
144+
typedef Aws::Utils::Outcome<StartVerificationResult, PartnerCentralAccountError> StartVerificationOutcome;
138145
typedef Aws::Utils::Outcome<TagResourceResult, PartnerCentralAccountError> TagResourceOutcome;
139146
typedef Aws::Utils::Outcome<UntagResourceResult, PartnerCentralAccountError> UntagResourceOutcome;
140147
typedef Aws::Utils::Outcome<UpdateConnectionPreferencesResult, PartnerCentralAccountError> UpdateConnectionPreferencesOutcome;
@@ -156,6 +163,7 @@ typedef std::future<GetConnectionPreferencesOutcome> GetConnectionPreferencesOut
156163
typedef std::future<GetPartnerOutcome> GetPartnerOutcomeCallable;
157164
typedef std::future<GetProfileUpdateTaskOutcome> GetProfileUpdateTaskOutcomeCallable;
158165
typedef std::future<GetProfileVisibilityOutcome> GetProfileVisibilityOutcomeCallable;
166+
typedef std::future<GetVerificationOutcome> GetVerificationOutcomeCallable;
159167
typedef std::future<ListConnectionInvitationsOutcome> ListConnectionInvitationsOutcomeCallable;
160168
typedef std::future<ListConnectionsOutcome> ListConnectionsOutcomeCallable;
161169
typedef std::future<ListPartnersOutcome> ListPartnersOutcomeCallable;
@@ -165,6 +173,7 @@ typedef std::future<PutProfileVisibilityOutcome> PutProfileVisibilityOutcomeCall
165173
typedef std::future<RejectConnectionInvitationOutcome> RejectConnectionInvitationOutcomeCallable;
166174
typedef std::future<SendEmailVerificationCodeOutcome> SendEmailVerificationCodeOutcomeCallable;
167175
typedef std::future<StartProfileUpdateTaskOutcome> StartProfileUpdateTaskOutcomeCallable;
176+
typedef std::future<StartVerificationOutcome> StartVerificationOutcomeCallable;
168177
typedef std::future<TagResourceOutcome> TagResourceOutcomeCallable;
169178
typedef std::future<UntagResourceOutcome> UntagResourceOutcomeCallable;
170179
typedef std::future<UpdateConnectionPreferencesOutcome> UpdateConnectionPreferencesOutcomeCallable;
@@ -221,6 +230,9 @@ typedef std::function<void(const PartnerCentralAccountClient*, const Model::GetP
221230
typedef std::function<void(const PartnerCentralAccountClient*, const Model::GetProfileVisibilityRequest&,
222231
const Model::GetProfileVisibilityOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
223232
GetProfileVisibilityResponseReceivedHandler;
233+
typedef std::function<void(const PartnerCentralAccountClient*, const Model::GetVerificationRequest&, const Model::GetVerificationOutcome&,
234+
const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
235+
GetVerificationResponseReceivedHandler;
224236
typedef std::function<void(const PartnerCentralAccountClient*, const Model::ListConnectionInvitationsRequest&,
225237
const Model::ListConnectionInvitationsOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
226238
ListConnectionInvitationsResponseReceivedHandler;
@@ -248,6 +260,9 @@ typedef std::function<void(const PartnerCentralAccountClient*, const Model::Send
248260
typedef std::function<void(const PartnerCentralAccountClient*, const Model::StartProfileUpdateTaskRequest&,
249261
const Model::StartProfileUpdateTaskOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
250262
StartProfileUpdateTaskResponseReceivedHandler;
263+
typedef std::function<void(const PartnerCentralAccountClient*, const Model::StartVerificationRequest&,
264+
const Model::StartVerificationOutcome&, const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
265+
StartVerificationResponseReceivedHandler;
251266
typedef std::function<void(const PartnerCentralAccountClient*, const Model::TagResourceRequest&, const Model::TagResourceOutcome&,
252267
const std::shared_ptr<const Aws::Client::AsyncCallerContext>&)>
253268
TagResourceResponseReceivedHandler;

0 commit comments

Comments
 (0)