Skip to content

Commit 4ae925b

Browse files
Update generated code (#1857)
update generated code
1 parent 4bcc377 commit 4ae925b

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
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.342.5"
3+
"${LATEST}": "3.342.6"
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
@@ -6,6 +6,10 @@
66

77
- AWS api-change: Added `ap-southeast-5` and `us-gov-east-1` regions
88

9+
### Changed
10+
11+
- AWS enhancement: Documentation updates.
12+
913
## 1.12.0
1014

1115
### Added

src/Service/CognitoIdentityProvider/src/Input/AdminCreateUserRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ final class AdminCreateUserRequest extends Input
6565
* - `email`:
6666
*
6767
* The email address where you want the user to receive their confirmation code and username. You must provide a value
68-
* for the `email` when you want to set `email_verified` to `true`, or if you set `EMAIL` in the
69-
* `DesiredDeliveryMediums` parameter.
68+
* for `email` when you want to set `email_verified` to `true`, or if you set `EMAIL` in the `DesiredDeliveryMediums`
69+
* parameter.
7070
* - `phone_number`:
7171
*
7272
* The phone number where you want the user to receive their confirmation code and username. You must provide a value
73-
* for the `email` when you want to set `phone_number` to `true`, or if you set `SMS` in the `DesiredDeliveryMediums`
74-
* parameter.
73+
* for `phone_number` when you want to set `phone_number_verified` to `true`, or if you set `SMS` in the
74+
* `DesiredDeliveryMediums` parameter.
7575
*
7676
* @var AttributeType[]|null
7777
*/

src/Service/CognitoIdentityProvider/src/Input/SetUserMFAPreferenceRequest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ final class SetUserMFAPreferenceRequest extends Input
2222

2323
/**
2424
* User preferences for time-based one-time password (TOTP) MFA. Activates or deactivates TOTP MFA and sets it as the
25-
* preferred MFA method when multiple methods are available.
25+
* preferred MFA method when multiple methods are available. Users must register a TOTP authenticator before they set
26+
* this as their preferred MFA method.
2627
*
2728
* @var SoftwareTokenMfaSettingsType|null
2829
*/

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,16 @@ final class UserType
4949
/**
5050
* The user status. This can be one of the following:
5151
*
52-
* - UNCONFIRMED - User has been created but not confirmed.
53-
* - CONFIRMED - User has been confirmed.
54-
* - EXTERNAL_PROVIDER - User signed in with a third-party IdP.
55-
* - UNKNOWN - User status isn't known.
56-
* - RESET_REQUIRED - User is confirmed, but the user must request a code and reset their password before they can sign
52+
* - `UNCONFIRMED`: User has been created but not confirmed.
53+
* - `CONFIRMED`: User has been confirmed.
54+
* - `EXTERNAL_PROVIDER`: User signed in with a third-party IdP.
55+
* - `RESET_REQUIRED`: User is confirmed, but the user must request a code and reset their password before they can sign
5756
* in.
58-
* - FORCE_CHANGE_PASSWORD - The user is confirmed and the user can sign in using a temporary password, but on first
57+
* - `FORCE_CHANGE_PASSWORD`: The user is confirmed and the user can sign in using a temporary password, but on first
5958
* sign-in, the user must change their password to a new value before doing anything else.
6059
*
60+
* The statuses `ARCHIVED`, `UNKNOWN`, and `COMPROMISED` are no longer used.
61+
*
6162
* @var UserStatusType::*|null
6263
*/
6364
private $userStatus;

0 commit comments

Comments
 (0)