Skip to content

Commit 544167a

Browse files
Update generated code (#1703)
update generated code
1 parent 6f33496 commit 544167a

File tree

7 files changed

+16
-14
lines changed

7 files changed

+16
-14
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.305.3"
3+
"${LATEST}": "3.305.4"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/CognitoIdentityProvider/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Add LimitExceededException to SignUp errors
8+
59
### Changed
610

711
- AWS enhancement: Documentation updates.

src/Service/CognitoIdentityProvider/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "1.7-dev"
31+
"dev-master": "1.8-dev"
3232
}
3333
}
3434
}

src/Service/CognitoIdentityProvider/src/CognitoIdentityProviderClient.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,6 +1894,7 @@ public function setUserMfaPreference($input): SetUserMFAPreferenceResponse
18941894
* @throws UsernameExistsException
18951895
* @throws TooManyRequestsException
18961896
* @throws InternalErrorException
1897+
* @throws LimitExceededException
18971898
* @throws InvalidSmsRoleAccessPolicyException
18981899
* @throws InvalidSmsRoleTrustRelationshipException
18991900
* @throws InvalidEmailRoleAccessPolicyException
@@ -1914,6 +1915,7 @@ public function signUp($input): SignUpResponse
19141915
'UsernameExistsException' => UsernameExistsException::class,
19151916
'TooManyRequestsException' => TooManyRequestsException::class,
19161917
'InternalErrorException' => InternalErrorException::class,
1918+
'LimitExceededException' => LimitExceededException::class,
19171919
'InvalidSmsRoleAccessPolicyException' => InvalidSmsRoleAccessPolicyException::class,
19181920
'InvalidSmsRoleTrustRelationshipException' => InvalidSmsRoleTrustRelationshipException::class,
19191921
'InvalidEmailRoleAccessPolicyException' => InvalidEmailRoleAccessPolicyException::class,

src/Service/CognitoIdentityProvider/src/Result/AdminGetUserResponse.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ class AdminGetUserResponse extends Result
3535
private $userCreateDate;
3636

3737
/**
38-
* The date and time, in ISO 8601 [^1] format, when the item was modified.
39-
*
40-
* [^1]: https://www.iso.org/iso-8601-date-and-time-format.html
38+
* The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your
39+
* SDK might render the output in a human-readable format like ISO 8601 or a Java `Date` object.
4140
*
4241
* @var \DateTimeImmutable|null
4342
*/

src/Service/CognitoIdentityProvider/src/ValueObject/GroupType.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,16 @@ final class GroupType
5454
private $precedence;
5555

5656
/**
57-
* The date and time, in ISO 8601 [^1] format, when the item was modified.
58-
*
59-
* [^1]: https://www.iso.org/iso-8601-date-and-time-format.html
57+
* The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your
58+
* SDK might render the output in a human-readable format like ISO 8601 or a Java `Date` object.
6059
*
6160
* @var \DateTimeImmutable|null
6261
*/
6362
private $lastModifiedDate;
6463

6564
/**
66-
* The date and time, in ISO 8601 [^1] format, when the item was created.
67-
*
68-
* [^1]: https://www.iso.org/iso-8601-date-and-time-format.html
65+
* The date and time when the item was created. Amazon Cognito returns this timestamp in UNIX epoch time format. Your
66+
* SDK might render the output in a human-readable format like ISO 8601 or a Java `Date` object.
6967
*
7068
* @var \DateTimeImmutable|null
7169
*/

src/Service/CognitoIdentityProvider/src/ValueObject/UserType.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ final class UserType
3131
private $userCreateDate;
3232

3333
/**
34-
* The date and time, in ISO 8601 [^1] format, when the item was modified.
35-
*
36-
* [^1]: https://www.iso.org/iso-8601-date-and-time-format.html
34+
* The date and time when the item was modified. Amazon Cognito returns this timestamp in UNIX epoch time format. Your
35+
* SDK might render the output in a human-readable format like ISO 8601 or a Java `Date` object.
3736
*
3837
* @var \DateTimeImmutable|null
3938
*/

0 commit comments

Comments
 (0)