Skip to content

Commit b2b5400

Browse files
feat(aws-android-sdk-cognitoidentityprovider): update models to latest (#2966)
Co-authored-by: Erica Eaton <[email protected]>
1 parent b221dab commit b2b5400

17 files changed

+925
-528
lines changed

aws-android-sdk-cognitoidentityprovider/src/main/java/com/amazonaws/services/cognitoidentityprovider/AmazonCognitoIdentityProvider.java

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,9 +1227,9 @@ AdminUserGlobalSignOutResult adminUserGlobalSignOut(
12271227

12281228
/**
12291229
* <p>
1230-
* Begins setup of time-based one-time password multi-factor authentication
1231-
* (TOTP MFA) for a user, with a unique private key that Amazon Cognito
1232-
* generates and returns in the API response. You can authorize an
1230+
* Begins setup of time-based one-time password (TOTP) multi-factor
1231+
* authentication (MFA) for a user, with a unique private key that Amazon
1232+
* Cognito generates and returns in the API response. You can authorize an
12331233
* <code>AssociateSoftwareToken</code> request with either the user's access
12341234
* token, or a session string from a challenge response that you received
12351235
* from Amazon Cognito.
@@ -1264,6 +1264,7 @@ AdminUserGlobalSignOutResult adminUserGlobalSignOut(
12641264
* @throws ResourceNotFoundException
12651265
* @throws InternalErrorException
12661266
* @throws SoftwareTokenMFANotFoundException
1267+
* @throws ForbiddenException
12671268
* @throws AmazonClientException If any internal errors are encountered
12681269
* inside the client while attempting to make the request or
12691270
* handle the response. For example if a network connection is
@@ -1296,6 +1297,7 @@ AssociateSoftwareTokenResult associateSoftwareToken(
12961297
* @throws UserNotFoundException
12971298
* @throws UserNotConfirmedException
12981299
* @throws InternalErrorException
1300+
* @throws ForbiddenException
12991301
* @throws AmazonClientException If any internal errors are encountered
13001302
* inside the client while attempting to make the request or
13011303
* handle the response. For example if a network connection is
@@ -1330,6 +1332,7 @@ ChangePasswordResult changePassword(ChangePasswordRequest changePasswordRequest)
13301332
* @throws UserNotFoundException
13311333
* @throws UserNotConfirmedException
13321334
* @throws InternalErrorException
1335+
* @throws ForbiddenException
13331336
* @throws AmazonClientException If any internal errors are encountered
13341337
* inside the client while attempting to make the request or
13351338
* handle the response. For example if a network connection is
@@ -1368,6 +1371,7 @@ ConfirmDeviceResult confirmDevice(ConfirmDeviceRequest confirmDeviceRequest)
13681371
* @throws UserNotFoundException
13691372
* @throws UserNotConfirmedException
13701373
* @throws InternalErrorException
1374+
* @throws ForbiddenException
13711375
* @throws AmazonClientException If any internal errors are encountered
13721376
* inside the client while attempting to make the request or
13731377
* handle the response. For example if a network connection is
@@ -1404,6 +1408,7 @@ ConfirmForgotPasswordResult confirmForgotPassword(
14041408
* @throws LimitExceededException
14051409
* @throws UserNotFoundException
14061410
* @throws InternalErrorException
1411+
* @throws ForbiddenException
14071412
* @throws AmazonClientException If any internal errors are encountered
14081413
* inside the client while attempting to make the request or
14091414
* handle the response. For example if a network connection is
@@ -1735,6 +1740,7 @@ void deleteResourceServer(DeleteResourceServerRequest deleteResourceServerReques
17351740
* @throws UserNotFoundException
17361741
* @throws UserNotConfirmedException
17371742
* @throws InternalErrorException
1743+
* @throws ForbiddenException
17381744
* @throws AmazonClientException If any internal errors are encountered
17391745
* inside the client while attempting to make the request or
17401746
* handle the response. For example if a network connection is
@@ -1765,6 +1771,7 @@ void deleteUser(DeleteUserRequest deleteUserRequest) throws AmazonClientExceptio
17651771
* @throws UserNotFoundException
17661772
* @throws UserNotConfirmedException
17671773
* @throws InternalErrorException
1774+
* @throws ForbiddenException
17681775
* @throws AmazonClientException If any internal errors are encountered
17691776
* inside the client while attempting to make the request or
17701777
* handle the response. For example if a network connection is
@@ -2057,6 +2064,7 @@ DescribeUserPoolDomainResult describeUserPoolDomain(
20572064
* @throws UserNotFoundException
20582065
* @throws UserNotConfirmedException
20592066
* @throws InternalErrorException
2067+
* @throws ForbiddenException
20602068
* @throws AmazonClientException If any internal errors are encountered
20612069
* inside the client while attempting to make the request or
20622070
* handle the response. For example if a network connection is
@@ -2128,6 +2136,7 @@ void forgetDevice(ForgetDeviceRequest forgetDeviceRequest) throws AmazonClientEx
21282136
* @throws CodeDeliveryFailureException
21292137
* @throws UserNotFoundException
21302138
* @throws InternalErrorException
2139+
* @throws ForbiddenException
21312140
* @throws AmazonClientException If any internal errors are encountered
21322141
* inside the client while attempting to make the request or
21332142
* handle the response. For example if a network connection is
@@ -2186,6 +2195,7 @@ GetCSVHeaderResult getCSVHeader(GetCSVHeaderRequest getCSVHeaderRequest)
21862195
* @throws UserNotFoundException
21872196
* @throws UserNotConfirmedException
21882197
* @throws InternalErrorException
2198+
* @throws ForbiddenException
21892199
* @throws AmazonClientException If any internal errors are encountered
21902200
* inside the client while attempting to make the request or
21912201
* handle the response. For example if a network connection is
@@ -2323,6 +2333,7 @@ GetUICustomizationResult getUICustomization(GetUICustomizationRequest getUICusto
23232333
* @throws UserNotFoundException
23242334
* @throws UserNotConfirmedException
23252335
* @throws InternalErrorException
2336+
* @throws ForbiddenException
23262337
* @throws AmazonClientException If any internal errors are encountered
23272338
* inside the client while attempting to make the request or
23282339
* handle the response. For example if a network connection is
@@ -2388,6 +2399,7 @@ GetUserResult getUser(GetUserRequest getUserRequest) throws AmazonClientExceptio
23882399
* @throws UserNotFoundException
23892400
* @throws UserNotConfirmedException
23902401
* @throws InternalErrorException
2402+
* @throws ForbiddenException
23912403
* @throws AmazonClientException If any internal errors are encountered
23922404
* inside the client while attempting to make the request or
23932405
* handle the response. For example if a network connection is
@@ -2448,6 +2460,7 @@ GetUserPoolMfaConfigResult getUserPoolMfaConfig(
24482460
* @throws PasswordResetRequiredException
24492461
* @throws UserNotConfirmedException
24502462
* @throws InternalErrorException
2463+
* @throws ForbiddenException
24512464
* @throws AmazonClientException If any internal errors are encountered
24522465
* inside the client while attempting to make the request or
24532466
* handle the response. For example if a network connection is
@@ -2512,6 +2525,7 @@ GlobalSignOutResult globalSignOut(GlobalSignOutRequest globalSignOutRequest)
25122525
* @throws InternalErrorException
25132526
* @throws InvalidSmsRoleAccessPolicyException
25142527
* @throws InvalidSmsRoleTrustRelationshipException
2528+
* @throws ForbiddenException
25152529
* @throws AmazonClientException If any internal errors are encountered
25162530
* inside the client while attempting to make the request or
25172531
* handle the response. For example if a network connection is
@@ -2543,6 +2557,7 @@ InitiateAuthResult initiateAuth(InitiateAuthRequest initiateAuthRequest)
25432557
* @throws UserNotFoundException
25442558
* @throws UserNotConfirmedException
25452559
* @throws InternalErrorException
2560+
* @throws ForbiddenException
25462561
* @throws AmazonClientException If any internal errors are encountered
25472562
* inside the client while attempting to make the request or
25482563
* handle the response. For example if a network connection is
@@ -2850,6 +2865,7 @@ ListUsersInGroupResult listUsersInGroup(ListUsersInGroupRequest listUsersInGroup
28502865
* @throws CodeDeliveryFailureException
28512866
* @throws UserNotFoundException
28522867
* @throws InternalErrorException
2868+
* @throws ForbiddenException
28532869
* @throws AmazonClientException If any internal errors are encountered
28542870
* inside the client while attempting to make the request or
28552871
* handle the response. For example if a network connection is
@@ -2918,6 +2934,7 @@ ResendConfirmationCodeResult resendConfirmationCode(
29182934
* @throws AliasExistsException
29192935
* @throws InternalErrorException
29202936
* @throws SoftwareTokenMFANotFoundException
2937+
* @throws ForbiddenException
29212938
* @throws AmazonClientException If any internal errors are encountered
29222939
* inside the client while attempting to make the request or
29232940
* handle the response. For example if a network connection is
@@ -2946,6 +2963,7 @@ RespondToAuthChallengeResult respondToAuthChallenge(
29462963
* @throws InvalidParameterException
29472964
* @throws UnsupportedOperationException
29482965
* @throws UnsupportedTokenTypeException
2966+
* @throws ForbiddenException
29492967
* @throws AmazonClientException If any internal errors are encountered
29502968
* inside the client while attempting to make the request or
29512969
* handle the response. For example if a network connection is
@@ -3060,6 +3078,7 @@ SetUICustomizationResult setUICustomization(SetUICustomizationRequest setUICusto
30603078
* @throws UserNotFoundException
30613079
* @throws UserNotConfirmedException
30623080
* @throws InternalErrorException
3081+
* @throws ForbiddenException
30633082
* @throws AmazonClientException If any internal errors are encountered
30643083
* inside the client while attempting to make the request or
30653084
* handle the response. For example if a network connection is
@@ -3146,6 +3165,7 @@ SetUserPoolMfaConfigResult setUserPoolMfaConfig(
31463165
* @throws UserNotFoundException
31473166
* @throws UserNotConfirmedException
31483167
* @throws InternalErrorException
3168+
* @throws ForbiddenException
31493169
* @throws AmazonClientException If any internal errors are encountered
31503170
* inside the client while attempting to make the request or
31513171
* handle the response. For example if a network connection is
@@ -3207,6 +3227,7 @@ SetUserSettingsResult setUserSettings(SetUserSettingsRequest setUserSettingsRequ
32073227
* @throws InvalidSmsRoleTrustRelationshipException
32083228
* @throws InvalidEmailRoleAccessPolicyException
32093229
* @throws CodeDeliveryFailureException
3230+
* @throws ForbiddenException
32103231
* @throws AmazonClientException If any internal errors are encountered
32113232
* inside the client while attempting to make the request or
32123233
* handle the response. For example if a network connection is
@@ -3392,6 +3413,7 @@ UpdateAuthEventFeedbackResult updateAuthEventFeedback(
33923413
* @throws UserNotFoundException
33933414
* @throws UserNotConfirmedException
33943415
* @throws InternalErrorException
3416+
* @throws ForbiddenException
33953417
* @throws AmazonClientException If any internal errors are encountered
33963418
* inside the client while attempting to make the request or
33973419
* handle the response. For example if a network connection is
@@ -3544,6 +3566,7 @@ UpdateResourceServerResult updateResourceServer(
35443566
* @throws UserNotFoundException
35453567
* @throws UserNotConfirmedException
35463568
* @throws InternalErrorException
3569+
* @throws ForbiddenException
35473570
* @throws AmazonClientException If any internal errors are encountered
35483571
* inside the client while attempting to make the request or
35493572
* handle the response. For example if a network connection is
@@ -3755,6 +3778,7 @@ UpdateUserPoolDomainResult updateUserPoolDomain(
37553778
* @throws NotAuthorizedException
37563779
* @throws SoftwareTokenMFANotFoundException
37573780
* @throws CodeMismatchException
3781+
* @throws ForbiddenException
37583782
* @throws AmazonClientException If any internal errors are encountered
37593783
* inside the client while attempting to make the request or
37603784
* handle the response. For example if a network connection is
@@ -3797,6 +3821,7 @@ VerifySoftwareTokenResult verifySoftwareToken(
37973821
* @throws UserNotConfirmedException
37983822
* @throws InternalErrorException
37993823
* @throws AliasExistsException
3824+
* @throws ForbiddenException
38003825
* @throws AmazonClientException If any internal errors are encountered
38013826
* inside the client while attempting to make the request or
38023827
* handle the response. For example if a network connection is

0 commit comments

Comments
 (0)