Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.342.5"
"${LATEST}": "3.342.6"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/CognitoIdentityProvider/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

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

### Changed

- AWS enhancement: Documentation updates.

## 1.12.0

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,13 @@ final class AdminCreateUserRequest extends Input
* - `email`:
*
* The email address where you want the user to receive their confirmation code and username. You must provide a value
* for the `email` when you want to set `email_verified` to `true`, or if you set `EMAIL` in the
* `DesiredDeliveryMediums` parameter.
* for `email` when you want to set `email_verified` to `true`, or if you set `EMAIL` in the `DesiredDeliveryMediums`
* parameter.
* - `phone_number`:
*
* The phone number where you want the user to receive their confirmation code and username. You must provide a value
* for the `email` when you want to set `phone_number` to `true`, or if you set `SMS` in the `DesiredDeliveryMediums`
* parameter.
* for `phone_number` when you want to set `phone_number_verified` to `true`, or if you set `SMS` in the
* `DesiredDeliveryMediums` parameter.
*
* @var AttributeType[]|null
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ final class SetUserMFAPreferenceRequest extends Input

/**
* User preferences for time-based one-time password (TOTP) MFA. Activates or deactivates TOTP MFA and sets it as the
* preferred MFA method when multiple methods are available.
* preferred MFA method when multiple methods are available. Users must register a TOTP authenticator before they set
* this as their preferred MFA method.
*
* @var SoftwareTokenMfaSettingsType|null
*/
Expand Down
13 changes: 7 additions & 6 deletions src/Service/CognitoIdentityProvider/src/ValueObject/UserType.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,16 @@ final class UserType
/**
* The user status. This can be one of the following:
*
* - UNCONFIRMED - User has been created but not confirmed.
* - CONFIRMED - User has been confirmed.
* - EXTERNAL_PROVIDER - User signed in with a third-party IdP.
* - UNKNOWN - User status isn't known.
* - RESET_REQUIRED - User is confirmed, but the user must request a code and reset their password before they can sign
* - `UNCONFIRMED`: User has been created but not confirmed.
* - `CONFIRMED`: User has been confirmed.
* - `EXTERNAL_PROVIDER`: User signed in with a third-party IdP.
* - `RESET_REQUIRED`: User is confirmed, but the user must request a code and reset their password before they can sign
* in.
* - FORCE_CHANGE_PASSWORD - The user is confirmed and the user can sign in using a temporary password, but on first
* - `FORCE_CHANGE_PASSWORD`: The user is confirmed and the user can sign in using a temporary password, but on first
* sign-in, the user must change their password to a new value before doing anything else.
*
* The statuses `ARCHIVED`, `UNKNOWN`, and `COMPROMISED` are no longer used.
*
* @var UserStatusType::*|null
*/
private $userStatus;
Expand Down