@aws-sdk/client-cognito-identity-provider 3.709.0 → 3.712.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. package/README.md +5 -0
  2. package/dist-types/CognitoIdentityProvider.d.ts +5 -0
  3. package/dist-types/CognitoIdentityProviderClient.d.ts +5 -0
  4. package/dist-types/commands/AddCustomAttributesCommand.d.ts +6 -1
  5. package/dist-types/commands/AdminConfirmSignUpCommand.d.ts +4 -2
  6. package/dist-types/commands/AdminDeleteUserAttributesCommand.d.ts +3 -2
  7. package/dist-types/commands/AdminDeleteUserCommand.d.ts +1 -1
  8. package/dist-types/commands/AdminDisableUserCommand.d.ts +3 -3
  9. package/dist-types/commands/AdminEnableUserCommand.d.ts +2 -1
  10. package/dist-types/commands/AdminForgetDeviceCommand.d.ts +3 -1
  11. package/dist-types/commands/AdminGetDeviceCommand.d.ts +2 -1
  12. package/dist-types/commands/AdminGetUserCommand.d.ts +3 -3
  13. package/dist-types/commands/AdminInitiateAuthCommand.d.ts +5 -1
  14. package/dist-types/commands/AdminListDevicesCommand.d.ts +4 -1
  15. package/dist-types/commands/AdminListGroupsForUserCommand.d.ts +3 -1
  16. package/dist-types/commands/AdminListUserAuthEventsCommand.d.ts +2 -2
  17. package/dist-types/commands/AdminRemoveUserFromGroupCommand.d.ts +3 -1
  18. package/dist-types/commands/AdminResetUserPasswordCommand.d.ts +12 -10
  19. package/dist-types/commands/AdminSetUserMFAPreferenceCommand.d.ts +3 -0
  20. package/dist-types/commands/AdminSetUserPasswordCommand.d.ts +15 -10
  21. package/dist-types/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +5 -1
  22. package/dist-types/commands/AdminUpdateDeviceStatusCommand.d.ts +6 -1
  23. package/dist-types/commands/AdminUpdateUserAttributesCommand.d.ts +6 -5
  24. package/dist-types/commands/AdminUserGlobalSignOutCommand.d.ts +5 -2
  25. package/dist-types/commands/AssociateSoftwareTokenCommand.d.ts +1 -0
  26. package/dist-types/commands/ConfirmDeviceCommand.d.ts +4 -2
  27. package/dist-types/commands/ConfirmForgotPasswordCommand.d.ts +2 -1
  28. package/dist-types/commands/ConfirmSignUpCommand.d.ts +2 -2
  29. package/dist-types/commands/CreateGroupCommand.d.ts +2 -1
  30. package/dist-types/commands/CreateIdentityProviderCommand.d.ts +2 -1
  31. package/dist-types/commands/CreateManagedLoginBrandingCommand.d.ts +6 -3
  32. package/dist-types/commands/CreateResourceServerCommand.d.ts +3 -1
  33. package/dist-types/commands/CreateUserImportJobCommand.d.ts +4 -1
  34. package/dist-types/commands/CreateUserPoolClientCommand.d.ts +6 -3
  35. package/dist-types/commands/CreateUserPoolCommand.d.ts +4 -2
  36. package/dist-types/commands/CreateUserPoolDomainCommand.d.ts +10 -2
  37. package/dist-types/commands/DeleteGroupCommand.d.ts +25 -2
  38. package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +23 -1
  39. package/dist-types/commands/DeleteManagedLoginBrandingCommand.d.ts +3 -1
  40. package/dist-types/commands/DeleteResourceServerCommand.d.ts +24 -1
  41. package/dist-types/commands/DeleteUserAttributesCommand.d.ts +3 -1
  42. package/dist-types/commands/DeleteUserCommand.d.ts +2 -1
  43. package/dist-types/commands/DeleteUserPoolClientCommand.d.ts +2 -1
  44. package/dist-types/commands/DeleteUserPoolCommand.d.ts +3 -1
  45. package/dist-types/commands/DeleteUserPoolDomainCommand.d.ts +3 -1
  46. package/dist-types/commands/DeleteWebAuthnCredentialCommand.d.ts +7 -1
  47. package/dist-types/commands/DescribeIdentityProviderCommand.d.ts +2 -1
  48. package/dist-types/commands/DescribeManagedLoginBrandingByClientCommand.d.ts +2 -2
  49. package/dist-types/commands/DescribeManagedLoginBrandingCommand.d.ts +2 -2
  50. package/dist-types/commands/DescribeResourceServerCommand.d.ts +1 -1
  51. package/dist-types/commands/DescribeRiskConfigurationCommand.d.ts +4 -1
  52. package/dist-types/commands/DescribeUserImportJobCommand.d.ts +1 -1
  53. package/dist-types/commands/DescribeUserPoolClientCommand.d.ts +3 -2
  54. package/dist-types/commands/DescribeUserPoolCommand.d.ts +3 -1
  55. package/dist-types/commands/DescribeUserPoolDomainCommand.d.ts +22 -1
  56. package/dist-types/commands/GlobalSignOutCommand.d.ts +4 -1
  57. package/dist-types/commands/SetUserMFAPreferenceCommand.d.ts +3 -0
  58. package/dist-types/commands/UpdateManagedLoginBrandingCommand.d.ts +4 -1
  59. package/dist-types/commands/UpdateUserPoolDomainCommand.d.ts +17 -19
  60. package/dist-types/index.d.ts +5 -0
  61. package/dist-types/models/models_0.d.ts +512 -360
  62. package/dist-types/models/models_1.d.ts +79 -67
  63. package/package.json +5 -5
@@ -45,10 +45,10 @@ export interface WebAuthnConfigurationType {
45
45
  */
46
46
  RelyingPartyId?: string | undefined;
47
47
  /**
48
- * <p>Sets or displays your user-pool treatment for MFA with a passkey. You can override
49
- * other MFA options and require passkey MFA, or you can set it as preferred. When passkey
50
- * MFA is preferred, the hosted UI encourages users to register a passkey at
51
- * sign-in.</p>
48
+ * <p>When <code>required</code>, users can only register and sign in users with passkeys
49
+ * that are capable of <a href="https://www.w3.org/TR/webauthn-2/#enum-userVerificationRequirement">user
50
+ * verification</a>. When <code>preferred</code>, your user pool doesn't
51
+ * require the use of authenticators with user verification but encourages it.</p>
52
52
  * @public
53
53
  */
54
54
  UserVerification?: UserVerificationType | undefined;
@@ -126,8 +126,9 @@ export interface GlobalSignOutResponse {
126
126
  */
127
127
  export interface InitiateAuthRequest {
128
128
  /**
129
- * <p>The authentication flow that you want to initiate. The <code>AuthParameters</code>
130
- * that you must submit are linked to the flow that you submit. For example:</p>
129
+ * <p>The authentication flow that you want to initiate. Each <code>AuthFlow</code> has
130
+ * linked <code>AuthParameters</code> that you must submit. The following are some example
131
+ * flows and their parameters.</p>
131
132
  * <ul>
132
133
  * <li>
133
134
  * <p>
@@ -155,12 +156,14 @@ export interface InitiateAuthRequest {
155
156
  * <code>PASSWORD</code> parameters.</p>
156
157
  * </li>
157
158
  * </ul>
158
- * <p>Valid values include the following:</p>
159
+ * <p>
160
+ * <i>All flows</i>
161
+ * </p>
159
162
  * <dl>
160
163
  * <dt>USER_AUTH</dt>
161
164
  * <dd>
162
- * <p>The entry point for sign-in with passwords, one-time passwords, biometric
163
- * devices, and security keys.</p>
165
+ * <p>The entry point for sign-in with passwords, one-time passwords, and
166
+ * WebAuthN authenticators.</p>
164
167
  * </dd>
165
168
  * <dt>USER_SRP_AUTH</dt>
166
169
  * <dd>
@@ -284,21 +287,21 @@ export interface InitiateAuthRequest {
284
287
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html">
285
288
  * Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
286
289
  * <note>
287
- * <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the
290
+ * <p>When you use the <code>ClientMetadata</code> parameter, note that Amazon Cognito won't do the
288
291
  * following:</p>
289
292
  * <ul>
290
293
  * <li>
291
- * <p>Store the ClientMetadata value. This data is available only to Lambda
292
- * triggers that are assigned to a user pool to support custom workflows. If
293
- * your user pool configuration doesn't include triggers, the ClientMetadata
294
- * parameter serves no purpose.</p>
294
+ * <p>Store the <code>ClientMetadata</code> value. This data is available only
295
+ * to Lambda triggers that are assigned to a user pool to support custom
296
+ * workflows. If your user pool configuration doesn't include triggers, the
297
+ * <code>ClientMetadata</code> parameter serves no purpose.</p>
295
298
  * </li>
296
299
  * <li>
297
- * <p>Validate the ClientMetadata value.</p>
300
+ * <p>Validate the <code>ClientMetadata</code> value.</p>
298
301
  * </li>
299
302
  * <li>
300
- * <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive
301
- * information.</p>
303
+ * <p>Encrypt the <code>ClientMetadata</code> value. Don't send sensitive
304
+ * information in this parameter.</p>
302
305
  * </li>
303
306
  * </ul>
304
307
  * </note>
@@ -320,6 +323,8 @@ export interface InitiateAuthRequest {
320
323
  * <p>Contextual data about your user session, such as the device fingerprint, IP address, or location. Amazon Cognito advanced
321
324
  * security evaluates the risk of an authentication event based on the context that your app generates and passes to Amazon Cognito
322
325
  * when it makes API requests.</p>
326
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-viewing-threat-protection-app.html">Collecting data for threat protection in
327
+ * applications</a>.</p>
323
328
  * @public
324
329
  */
325
330
  UserContextData?: UserContextDataType | undefined;
@@ -530,7 +535,7 @@ export interface ListDevicesResponse {
530
535
  */
531
536
  export interface ListGroupsRequest {
532
537
  /**
533
- * <p>The user pool ID for the user pool.</p>
538
+ * <p>The ID of the user pool.</p>
534
539
  * @public
535
540
  */
536
541
  UserPoolId: string | undefined;
@@ -633,7 +638,7 @@ export interface ListIdentityProvidersResponse {
633
638
  */
634
639
  export interface ListResourceServersRequest {
635
640
  /**
636
- * <p>The user pool ID for the user pool.</p>
641
+ * <p>The ID of the user pool.</p>
637
642
  * @public
638
643
  */
639
644
  UserPoolId: string | undefined;
@@ -689,7 +694,7 @@ export interface ListTagsForResourceResponse {
689
694
  */
690
695
  export interface ListUserImportJobsRequest {
691
696
  /**
692
- * <p>The user pool ID for the user pool that the users are being imported into.</p>
697
+ * <p>The ID of the user pool that the users are being imported into.</p>
693
698
  * @public
694
699
  */
695
700
  UserPoolId: string | undefined;
@@ -733,7 +738,7 @@ export interface ListUserImportJobsResponse {
733
738
  */
734
739
  export interface ListUserPoolClientsRequest {
735
740
  /**
736
- * <p>The user pool ID for the user pool where you want to list user pool clients.</p>
741
+ * <p>The ID of the user pool where you want to list user pool clients.</p>
737
742
  * @public
738
743
  */
739
744
  UserPoolId: string | undefined;
@@ -873,7 +878,7 @@ export interface ListUserPoolsResponse {
873
878
  */
874
879
  export interface ListUsersRequest {
875
880
  /**
876
- * <p>The user pool ID for the user pool on which the search should be performed.</p>
881
+ * <p>The ID of the user pool on which the search should be performed.</p>
877
882
  * @public
878
883
  */
879
884
  UserPoolId: string | undefined;
@@ -1031,7 +1036,7 @@ export interface ListUsersResponse {
1031
1036
  */
1032
1037
  export interface ListUsersInGroupRequest {
1033
1038
  /**
1034
- * <p>The user pool ID for the user pool.</p>
1039
+ * <p>The ID of the user pool.</p>
1035
1040
  * @public
1036
1041
  */
1037
1042
  UserPoolId: string | undefined;
@@ -1161,7 +1166,8 @@ export interface ResendConfirmationCodeRequest {
1161
1166
  ClientId: string | undefined;
1162
1167
  /**
1163
1168
  * <p>A keyed-hash message authentication code (HMAC) calculated using the secret key of a
1164
- * user pool client and username plus the client ID in the message.</p>
1169
+ * user pool client and username plus the client ID in the message. For more information
1170
+ * about <code>SecretHash</code>, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/signing-up-users-in-your-app.html#cognito-user-pools-computing-secret-hash">Computing secret hash values</a>.</p>
1165
1171
  * @public
1166
1172
  */
1167
1173
  SecretHash?: string | undefined;
@@ -1169,6 +1175,8 @@ export interface ResendConfirmationCodeRequest {
1169
1175
  * <p>Contextual data about your user session, such as the device fingerprint, IP address, or location. Amazon Cognito advanced
1170
1176
  * security evaluates the risk of an authentication event based on the context that your app generates and passes to Amazon Cognito
1171
1177
  * when it makes API requests.</p>
1178
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-viewing-threat-protection-app.html">Collecting data for threat protection in
1179
+ * applications</a>.</p>
1172
1180
  * @public
1173
1181
  */
1174
1182
  UserContextData?: UserContextDataType | undefined;
@@ -1201,21 +1209,21 @@ export interface ResendConfirmationCodeRequest {
1201
1209
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html">
1202
1210
  * Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
1203
1211
  * <note>
1204
- * <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the
1212
+ * <p>When you use the <code>ClientMetadata</code> parameter, note that Amazon Cognito won't do the
1205
1213
  * following:</p>
1206
1214
  * <ul>
1207
1215
  * <li>
1208
- * <p>Store the ClientMetadata value. This data is available only to Lambda
1209
- * triggers that are assigned to a user pool to support custom workflows. If
1210
- * your user pool configuration doesn't include triggers, the ClientMetadata
1211
- * parameter serves no purpose.</p>
1216
+ * <p>Store the <code>ClientMetadata</code> value. This data is available only
1217
+ * to Lambda triggers that are assigned to a user pool to support custom
1218
+ * workflows. If your user pool configuration doesn't include triggers, the
1219
+ * <code>ClientMetadata</code> parameter serves no purpose.</p>
1212
1220
  * </li>
1213
1221
  * <li>
1214
- * <p>Validate the ClientMetadata value.</p>
1222
+ * <p>Validate the <code>ClientMetadata</code> value.</p>
1215
1223
  * </li>
1216
1224
  * <li>
1217
- * <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive
1218
- * information.</p>
1225
+ * <p>Encrypt the <code>ClientMetadata</code> value. Don't send sensitive
1226
+ * information in this parameter.</p>
1219
1227
  * </li>
1220
1228
  * </ul>
1221
1229
  * </note>
@@ -1450,6 +1458,8 @@ export interface RespondToAuthChallengeRequest {
1450
1458
  * <p>Contextual data about your user session, such as the device fingerprint, IP address, or location. Amazon Cognito advanced
1451
1459
  * security evaluates the risk of an authentication event based on the context that your app generates and passes to Amazon Cognito
1452
1460
  * when it makes API requests.</p>
1461
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-viewing-threat-protection-app.html">Collecting data for threat protection in
1462
+ * applications</a>.</p>
1453
1463
  * @public
1454
1464
  */
1455
1465
  UserContextData?: UserContextDataType | undefined;
@@ -1471,21 +1481,21 @@ export interface RespondToAuthChallengeRequest {
1471
1481
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html">
1472
1482
  * Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
1473
1483
  * <note>
1474
- * <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the
1484
+ * <p>When you use the <code>ClientMetadata</code> parameter, note that Amazon Cognito won't do the
1475
1485
  * following:</p>
1476
1486
  * <ul>
1477
1487
  * <li>
1478
- * <p>Store the ClientMetadata value. This data is available only to Lambda
1479
- * triggers that are assigned to a user pool to support custom workflows. If
1480
- * your user pool configuration doesn't include triggers, the ClientMetadata
1481
- * parameter serves no purpose.</p>
1488
+ * <p>Store the <code>ClientMetadata</code> value. This data is available only
1489
+ * to Lambda triggers that are assigned to a user pool to support custom
1490
+ * workflows. If your user pool configuration doesn't include triggers, the
1491
+ * <code>ClientMetadata</code> parameter serves no purpose.</p>
1482
1492
  * </li>
1483
1493
  * <li>
1484
- * <p>Validate the ClientMetadata value.</p>
1494
+ * <p>Validate the <code>ClientMetadata</code> value.</p>
1485
1495
  * </li>
1486
1496
  * <li>
1487
- * <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive
1488
- * information.</p>
1497
+ * <p>Encrypt the <code>ClientMetadata</code> value. Don't send sensitive
1498
+ * information in this parameter.</p>
1489
1499
  * </li>
1490
1500
  * </ul>
1491
1501
  * </note>
@@ -1663,7 +1673,7 @@ export interface SetRiskConfigurationResponse {
1663
1673
  */
1664
1674
  export interface SetUICustomizationRequest {
1665
1675
  /**
1666
- * <p>The user pool ID for the user pool.</p>
1676
+ * <p>The ID of the user pool.</p>
1667
1677
  * @public
1668
1678
  */
1669
1679
  UserPoolId: string | undefined;
@@ -1873,7 +1883,8 @@ export interface SignUpRequest {
1873
1883
  ClientId: string | undefined;
1874
1884
  /**
1875
1885
  * <p>A keyed-hash message authentication code (HMAC) calculated using the secret key of a
1876
- * user pool client and username plus the client ID in the message.</p>
1886
+ * user pool client and username plus the client ID in the message. For more information
1887
+ * about <code>SecretHash</code>, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/signing-up-users-in-your-app.html#cognito-user-pools-computing-secret-hash">Computing secret hash values</a>.</p>
1877
1888
  * @public
1878
1889
  */
1879
1890
  SecretHash?: string | undefined;
@@ -1922,6 +1933,8 @@ export interface SignUpRequest {
1922
1933
  * <p>Contextual data about your user session, such as the device fingerprint, IP address, or location. Amazon Cognito advanced
1923
1934
  * security evaluates the risk of an authentication event based on the context that your app generates and passes to Amazon Cognito
1924
1935
  * when it makes API requests.</p>
1936
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-viewing-threat-protection-app.html">Collecting data for threat protection in
1937
+ * applications</a>.</p>
1925
1938
  * @public
1926
1939
  */
1927
1940
  UserContextData?: UserContextDataType | undefined;
@@ -1940,21 +1953,21 @@ export interface SignUpRequest {
1940
1953
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html">
1941
1954
  * Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
1942
1955
  * <note>
1943
- * <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the
1956
+ * <p>When you use the <code>ClientMetadata</code> parameter, note that Amazon Cognito won't do the
1944
1957
  * following:</p>
1945
1958
  * <ul>
1946
1959
  * <li>
1947
- * <p>Store the ClientMetadata value. This data is available only to Lambda
1948
- * triggers that are assigned to a user pool to support custom workflows. If
1949
- * your user pool configuration doesn't include triggers, the ClientMetadata
1950
- * parameter serves no purpose.</p>
1960
+ * <p>Store the <code>ClientMetadata</code> value. This data is available only
1961
+ * to Lambda triggers that are assigned to a user pool to support custom
1962
+ * workflows. If your user pool configuration doesn't include triggers, the
1963
+ * <code>ClientMetadata</code> parameter serves no purpose.</p>
1951
1964
  * </li>
1952
1965
  * <li>
1953
- * <p>Validate the ClientMetadata value.</p>
1966
+ * <p>Validate the <code>ClientMetadata</code> value.</p>
1954
1967
  * </li>
1955
1968
  * <li>
1956
- * <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive
1957
- * information.</p>
1969
+ * <p>Encrypt the <code>ClientMetadata</code> value. Don't send sensitive
1970
+ * information in this parameter.</p>
1958
1971
  * </li>
1959
1972
  * </ul>
1960
1973
  * </note>
@@ -1999,7 +2012,7 @@ export interface SignUpResponse {
1999
2012
  */
2000
2013
  export interface StartUserImportJobRequest {
2001
2014
  /**
2002
- * <p>The user pool ID for the user pool that the users are being imported into.</p>
2015
+ * <p>The ID of the user pool that the users are being imported into.</p>
2003
2016
  * @public
2004
2017
  */
2005
2018
  UserPoolId: string | undefined;
@@ -2062,7 +2075,7 @@ export declare class WebAuthnConfigurationMissingException extends __BaseExcepti
2062
2075
  */
2063
2076
  export interface StopUserImportJobRequest {
2064
2077
  /**
2065
- * <p>The user pool ID for the user pool that the users are being imported into.</p>
2078
+ * <p>The ID of the user pool that the users are being imported into.</p>
2066
2079
  * @public
2067
2080
  */
2068
2081
  UserPoolId: string | undefined;
@@ -2205,7 +2218,7 @@ export interface UpdateGroupRequest {
2205
2218
  */
2206
2219
  GroupName: string | undefined;
2207
2220
  /**
2208
- * <p>The user pool ID for the user pool.</p>
2221
+ * <p>The ID of the user pool.</p>
2209
2222
  * @public
2210
2223
  */
2211
2224
  UserPoolId: string | undefined;
@@ -2449,7 +2462,7 @@ export interface UpdateManagedLoginBrandingResponse {
2449
2462
  */
2450
2463
  export interface UpdateResourceServerRequest {
2451
2464
  /**
2452
- * <p>The user pool ID for the user pool.</p>
2465
+ * <p>The ID of the user pool.</p>
2453
2466
  * @public
2454
2467
  */
2455
2468
  UserPoolId: string | undefined;
@@ -2521,21 +2534,21 @@ export interface UpdateUserAttributesRequest {
2521
2534
  * <p>For more information, see <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-identity-pools-working-with-aws-lambda-triggers.html">
2522
2535
  * Customizing user pool Workflows with Lambda Triggers</a> in the <i>Amazon Cognito Developer Guide</i>.</p>
2523
2536
  * <note>
2524
- * <p>When you use the ClientMetadata parameter, remember that Amazon Cognito won't do the
2537
+ * <p>When you use the <code>ClientMetadata</code> parameter, note that Amazon Cognito won't do the
2525
2538
  * following:</p>
2526
2539
  * <ul>
2527
2540
  * <li>
2528
- * <p>Store the ClientMetadata value. This data is available only to Lambda
2529
- * triggers that are assigned to a user pool to support custom workflows. If
2530
- * your user pool configuration doesn't include triggers, the ClientMetadata
2531
- * parameter serves no purpose.</p>
2541
+ * <p>Store the <code>ClientMetadata</code> value. This data is available only
2542
+ * to Lambda triggers that are assigned to a user pool to support custom
2543
+ * workflows. If your user pool configuration doesn't include triggers, the
2544
+ * <code>ClientMetadata</code> parameter serves no purpose.</p>
2532
2545
  * </li>
2533
2546
  * <li>
2534
- * <p>Validate the ClientMetadata value.</p>
2547
+ * <p>Validate the <code>ClientMetadata</code> value.</p>
2535
2548
  * </li>
2536
2549
  * <li>
2537
- * <p>Encrypt the ClientMetadata value. Don't use Amazon Cognito to provide sensitive
2538
- * information.</p>
2550
+ * <p>Encrypt the <code>ClientMetadata</code> value. Don't send sensitive
2551
+ * information in this parameter.</p>
2539
2552
  * </li>
2540
2553
  * </ul>
2541
2554
  * </note>
@@ -2562,7 +2575,7 @@ export interface UpdateUserAttributesResponse {
2562
2575
  */
2563
2576
  export interface UpdateUserPoolRequest {
2564
2577
  /**
2565
- * <p>The user pool ID for the user pool you want to update.</p>
2578
+ * <p>The ID of the user pool you want to update.</p>
2566
2579
  * @public
2567
2580
  */
2568
2581
  UserPoolId: string | undefined;
@@ -2732,8 +2745,7 @@ export interface UpdateUserPoolResponse {
2732
2745
  */
2733
2746
  export interface UpdateUserPoolClientRequest {
2734
2747
  /**
2735
- * <p>The user pool ID for the user pool where you want to update the user pool
2736
- * client.</p>
2748
+ * <p>The ID of the user pool where you want to update the user pool client.</p>
2737
2749
  * @public
2738
2750
  */
2739
2751
  UserPoolId: string | undefined;
@@ -2902,8 +2914,8 @@ export interface UpdateUserPoolClientRequest {
2902
2914
  * <code>Google</code>, <code>SignInWithApple</code>, and <code>LoginWithAmazon</code>.
2903
2915
  * You can also specify the names that you configured for the SAML and OIDC IdPs in your
2904
2916
  * user pool, for example <code>MySAMLIdP</code> or <code>MyOIDCIdP</code>.</p>
2905
- * <p>This setting applies to providers that you can access with the <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-app-integration.html">hosted
2906
- * UI and OAuth 2.0 authorization server</a>. The removal of <code>COGNITO</code>
2917
+ * <p>This setting applies to providers that you can access with <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-managed-login.html">managed
2918
+ * login</a>. The removal of <code>COGNITO</code>
2907
2919
  * from this list doesn't prevent authentication operations for local users with the
2908
2920
  * user pools API in an Amazon Web Services SDK. The only way to prevent API-based authentication is to
2909
2921
  * block access with a <a href="https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-waf.html">WAF rule</a>.</p>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cognito-identity-provider",
3
3
  "description": "AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native",
4
- "version": "3.709.0",
4
+ "version": "3.712.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-cognito-identity-provider",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.709.0",
24
- "@aws-sdk/client-sts": "3.709.0",
23
+ "@aws-sdk/client-sso-oidc": "3.712.0",
24
+ "@aws-sdk/client-sts": "3.712.0",
25
25
  "@aws-sdk/core": "3.709.0",
26
- "@aws-sdk/credential-provider-node": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.712.0",
27
27
  "@aws-sdk/middleware-host-header": "3.709.0",
28
28
  "@aws-sdk/middleware-logger": "3.709.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.709.0",
@@ -32,7 +32,7 @@
32
32
  "@aws-sdk/types": "3.709.0",
33
33
  "@aws-sdk/util-endpoints": "3.709.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.709.0",
35
- "@aws-sdk/util-user-agent-node": "3.709.0",
35
+ "@aws-sdk/util-user-agent-node": "3.712.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",