@aws-sdk/client-cognito-identity-provider 3.529.0 → 3.530.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.
@@ -28,6 +28,8 @@ declare const AdminResetUserPasswordCommand_base: {
28
28
  * @public
29
29
  * <p>Resets the specified user's password in a user pool as an administrator. Works on any
30
30
  * user.</p>
31
+ * <p>To use this API operation, your user pool must have self-service account recovery
32
+ * configured. Use <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminSetUserPassword.html">AdminSetUserPassword</a> if you manage passwords as an administrator.</p>
31
33
  * <note>
32
34
  * <p>This action might generate an SMS text message. Starting June 1, 2021, US telecom carriers
33
35
  * require you to register an origination phone number before you can send SMS messages
@@ -36,6 +36,8 @@ declare const ForgotPasswordCommand_base: {
36
36
  * <code>InvalidParameterException</code>. If your app client has a client secret and
37
37
  * you don't provide a <code>SECRET_HASH</code> parameter, this API returns
38
38
  * <code>NotAuthorizedException</code>.</p>
39
+ * <p>To use this API operation, your user pool must have self-service account recovery
40
+ * configured. Use <a href="https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminSetUserPassword.html">AdminSetUserPassword</a> if you manage passwords as an administrator.</p>
39
41
  * <note>
40
42
  * <p>Amazon Cognito doesn't evaluate Identity and Access Management (IAM) policies in requests for this API operation. For
41
43
  * this operation, you can't use IAM credentials to authorize requests, and you can't
@@ -90,6 +90,10 @@ declare const SetUserPoolMfaConfigCommand_base: {
90
90
  * @see {@link SetUserPoolMfaConfigCommandOutput} for command's `response` shape.
91
91
  * @see {@link CognitoIdentityProviderClientResolvedConfig | config} for CognitoIdentityProviderClient's `config` shape.
92
92
  *
93
+ * @throws {@link ConcurrentModificationException} (client fault)
94
+ * <p>This exception is thrown if two or more modifications are happening
95
+ * concurrently.</p>
96
+ *
93
97
  * @throws {@link InternalErrorException} (server fault)
94
98
  * <p>This exception is thrown when Amazon Cognito encounters an internal error.</p>
95
99
  *
@@ -217,7 +217,9 @@ export interface NumberAttributeConstraintsType {
217
217
  MinValue?: string;
218
218
  /**
219
219
  * @public
220
- * <p>The maximum value of an attribute that is of the number data type.</p>
220
+ * <p>The maximum length of a number attribute value. Must be a number less than or equal to
221
+ * <code>2^1023</code>, represented as a string with a length of 131072 characters or
222
+ * fewer.</p>
221
223
  */
222
224
  MaxValue?: string;
223
225
  }
@@ -233,7 +235,9 @@ export interface StringAttributeConstraintsType {
233
235
  MinLength?: string;
234
236
  /**
235
237
  * @public
236
- * <p>The maximum length.</p>
238
+ * <p>The maximum length of a string attribute value. Must be a number less than or equal to
239
+ * <code>2^1023</code>, represented as a string with a length of 131072 characters or
240
+ * fewer.</p>
237
241
  */
238
242
  MaxLength?: string;
239
243
  }
@@ -420,9 +424,11 @@ export interface AdminAddUserToGroupRequest {
420
424
  UserPoolId: string | undefined;
421
425
  /**
422
426
  * @public
423
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
424
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
425
- * your user pool, you can also use their <code>sub</code> in this request.</p>
427
+ * <p>The username of the user that you want to query or modify. The value of this parameter
428
+ * is typically your user's username, but it can be any of their alias attributes. If
429
+ * <code>username</code> isn't an alias attribute in your user pool, this value
430
+ * must be the <code>sub</code> of a local user or the username of a user from a
431
+ * third-party IdP.</p>
426
432
  */
427
433
  Username: string | undefined;
428
434
  /**
@@ -455,9 +461,11 @@ export interface AdminConfirmSignUpRequest {
455
461
  UserPoolId: string | undefined;
456
462
  /**
457
463
  * @public
458
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
459
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
460
- * your user pool, you can also use their <code>sub</code> in this request.</p>
464
+ * <p>The username of the user that you want to query or modify. The value of this parameter
465
+ * is typically your user's username, but it can be any of their alias attributes. If
466
+ * <code>username</code> isn't an alias attribute in your user pool, this value
467
+ * must be the <code>sub</code> of a local user or the username of a user from a
468
+ * third-party IdP.</p>
461
469
  */
462
470
  Username: string | undefined;
463
471
  /**
@@ -1038,9 +1046,11 @@ export interface AdminDeleteUserRequest {
1038
1046
  UserPoolId: string | undefined;
1039
1047
  /**
1040
1048
  * @public
1041
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1042
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1043
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1049
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1050
+ * is typically your user's username, but it can be any of their alias attributes. If
1051
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1052
+ * must be the <code>sub</code> of a local user or the username of a user from a
1053
+ * third-party IdP.</p>
1044
1054
  */
1045
1055
  Username: string | undefined;
1046
1056
  }
@@ -1056,9 +1066,11 @@ export interface AdminDeleteUserAttributesRequest {
1056
1066
  UserPoolId: string | undefined;
1057
1067
  /**
1058
1068
  * @public
1059
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1060
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1061
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1069
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1070
+ * is typically your user's username, but it can be any of their alias attributes. If
1071
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1072
+ * must be the <code>sub</code> of a local user or the username of a user from a
1073
+ * third-party IdP.</p>
1062
1074
  */
1063
1075
  Username: string | undefined;
1064
1076
  /**
@@ -1146,9 +1158,11 @@ export interface AdminDisableUserRequest {
1146
1158
  UserPoolId: string | undefined;
1147
1159
  /**
1148
1160
  * @public
1149
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1150
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1151
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1161
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1162
+ * is typically your user's username, but it can be any of their alias attributes. If
1163
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1164
+ * must be the <code>sub</code> of a local user or the username of a user from a
1165
+ * third-party IdP.</p>
1152
1166
  */
1153
1167
  Username: string | undefined;
1154
1168
  }
@@ -1171,9 +1185,11 @@ export interface AdminEnableUserRequest {
1171
1185
  UserPoolId: string | undefined;
1172
1186
  /**
1173
1187
  * @public
1174
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1175
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1176
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1188
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1189
+ * is typically your user's username, but it can be any of their alias attributes. If
1190
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1191
+ * must be the <code>sub</code> of a local user or the username of a user from a
1192
+ * third-party IdP.</p>
1177
1193
  */
1178
1194
  Username: string | undefined;
1179
1195
  }
@@ -1196,9 +1212,11 @@ export interface AdminForgetDeviceRequest {
1196
1212
  UserPoolId: string | undefined;
1197
1213
  /**
1198
1214
  * @public
1199
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1200
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1201
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1215
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1216
+ * is typically your user's username, but it can be any of their alias attributes. If
1217
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1218
+ * must be the <code>sub</code> of a local user or the username of a user from a
1219
+ * third-party IdP.</p>
1202
1220
  */
1203
1221
  Username: string | undefined;
1204
1222
  /**
@@ -1236,9 +1254,11 @@ export interface AdminGetDeviceRequest {
1236
1254
  UserPoolId: string | undefined;
1237
1255
  /**
1238
1256
  * @public
1239
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1240
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1241
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1257
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1258
+ * is typically your user's username, but it can be any of their alias attributes. If
1259
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1260
+ * must be the <code>sub</code> of a local user or the username of a user from a
1261
+ * third-party IdP.</p>
1242
1262
  */
1243
1263
  Username: string | undefined;
1244
1264
  }
@@ -1297,9 +1317,11 @@ export interface AdminGetUserRequest {
1297
1317
  UserPoolId: string | undefined;
1298
1318
  /**
1299
1319
  * @public
1300
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1301
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1302
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1320
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1321
+ * is typically your user's username, but it can be any of their alias attributes. If
1322
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1323
+ * must be the <code>sub</code> of a local user or the username of a user from a
1324
+ * third-party IdP.</p>
1303
1325
  */
1304
1326
  Username: string | undefined;
1305
1327
  }
@@ -1956,9 +1978,11 @@ export interface AdminListDevicesRequest {
1956
1978
  UserPoolId: string | undefined;
1957
1979
  /**
1958
1980
  * @public
1959
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
1960
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
1961
- * your user pool, you can also use their <code>sub</code> in this request.</p>
1981
+ * <p>The username of the user that you want to query or modify. The value of this parameter
1982
+ * is typically your user's username, but it can be any of their alias attributes. If
1983
+ * <code>username</code> isn't an alias attribute in your user pool, this value
1984
+ * must be the <code>sub</code> of a local user or the username of a user from a
1985
+ * third-party IdP.</p>
1962
1986
  */
1963
1987
  Username: string | undefined;
1964
1988
  /**
@@ -2000,9 +2024,11 @@ export interface AdminListDevicesResponse {
2000
2024
  export interface AdminListGroupsForUserRequest {
2001
2025
  /**
2002
2026
  * @public
2003
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2004
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2005
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2027
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2028
+ * is typically your user's username, but it can be any of their alias attributes. If
2029
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2030
+ * must be the <code>sub</code> of a local user or the username of a user from a
2031
+ * third-party IdP.</p>
2006
2032
  */
2007
2033
  Username: string | undefined;
2008
2034
  /**
@@ -2103,9 +2129,11 @@ export interface AdminListUserAuthEventsRequest {
2103
2129
  UserPoolId: string | undefined;
2104
2130
  /**
2105
2131
  * @public
2106
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2107
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2108
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2132
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2133
+ * is typically your user's username, but it can be any of their alias attributes. If
2134
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2135
+ * must be the <code>sub</code> of a local user or the username of a user from a
2136
+ * third-party IdP.</p>
2109
2137
  */
2110
2138
  Username: string | undefined;
2111
2139
  /**
@@ -2393,9 +2421,11 @@ export interface AdminRemoveUserFromGroupRequest {
2393
2421
  UserPoolId: string | undefined;
2394
2422
  /**
2395
2423
  * @public
2396
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2397
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2398
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2424
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2425
+ * is typically your user's username, but it can be any of their alias attributes. If
2426
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2427
+ * must be the <code>sub</code> of a local user or the username of a user from a
2428
+ * third-party IdP.</p>
2399
2429
  */
2400
2430
  Username: string | undefined;
2401
2431
  /**
@@ -2416,9 +2446,11 @@ export interface AdminResetUserPasswordRequest {
2416
2446
  UserPoolId: string | undefined;
2417
2447
  /**
2418
2448
  * @public
2419
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2420
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2421
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2449
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2450
+ * is typically your user's username, but it can be any of their alias attributes. If
2451
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2452
+ * must be the <code>sub</code> of a local user or the username of a user from a
2453
+ * third-party IdP.</p>
2422
2454
  */
2423
2455
  Username: string | undefined;
2424
2456
  /**
@@ -2810,9 +2842,11 @@ export interface AdminSetUserMFAPreferenceRequest {
2810
2842
  SoftwareTokenMfaSettings?: SoftwareTokenMfaSettingsType;
2811
2843
  /**
2812
2844
  * @public
2813
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2814
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2815
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2845
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2846
+ * is typically your user's username, but it can be any of their alias attributes. If
2847
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2848
+ * must be the <code>sub</code> of a local user or the username of a user from a
2849
+ * third-party IdP.</p>
2816
2850
  */
2817
2851
  Username: string | undefined;
2818
2852
  /**
@@ -2837,9 +2871,11 @@ export interface AdminSetUserPasswordRequest {
2837
2871
  UserPoolId: string | undefined;
2838
2872
  /**
2839
2873
  * @public
2840
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2841
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2842
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2874
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2875
+ * is typically your user's username, but it can be any of their alias attributes. If
2876
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2877
+ * must be the <code>sub</code> of a local user or the username of a user from a
2878
+ * third-party IdP.</p>
2843
2879
  */
2844
2880
  Username: string | undefined;
2845
2881
  /**
@@ -2873,9 +2909,11 @@ export interface AdminSetUserSettingsRequest {
2873
2909
  UserPoolId: string | undefined;
2874
2910
  /**
2875
2911
  * @public
2876
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2877
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2878
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2912
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2913
+ * is typically your user's username, but it can be any of their alias attributes. If
2914
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2915
+ * must be the <code>sub</code> of a local user or the username of a user from a
2916
+ * third-party IdP.</p>
2879
2917
  */
2880
2918
  Username: string | undefined;
2881
2919
  /**
@@ -2903,9 +2941,11 @@ export interface AdminUpdateAuthEventFeedbackRequest {
2903
2941
  UserPoolId: string | undefined;
2904
2942
  /**
2905
2943
  * @public
2906
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2907
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2908
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2944
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2945
+ * is typically your user's username, but it can be any of their alias attributes. If
2946
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2947
+ * must be the <code>sub</code> of a local user or the username of a user from a
2948
+ * third-party IdP.</p>
2909
2949
  */
2910
2950
  Username: string | undefined;
2911
2951
  /**
@@ -2952,9 +2992,11 @@ export interface AdminUpdateDeviceStatusRequest {
2952
2992
  UserPoolId: string | undefined;
2953
2993
  /**
2954
2994
  * @public
2955
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2956
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2957
- * your user pool, you can also use their <code>sub</code> in this request.</p>
2995
+ * <p>The username of the user that you want to query or modify. The value of this parameter
2996
+ * is typically your user's username, but it can be any of their alias attributes. If
2997
+ * <code>username</code> isn't an alias attribute in your user pool, this value
2998
+ * must be the <code>sub</code> of a local user or the username of a user from a
2999
+ * third-party IdP.</p>
2958
3000
  */
2959
3001
  Username: string | undefined;
2960
3002
  /**
@@ -2986,9 +3028,11 @@ export interface AdminUpdateUserAttributesRequest {
2986
3028
  UserPoolId: string | undefined;
2987
3029
  /**
2988
3030
  * @public
2989
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
2990
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
2991
- * your user pool, you can also use their <code>sub</code> in this request.</p>
3031
+ * <p>The username of the user that you want to query or modify. The value of this parameter
3032
+ * is typically your user's username, but it can be any of their alias attributes. If
3033
+ * <code>username</code> isn't an alias attribute in your user pool, this value
3034
+ * must be the <code>sub</code> of a local user or the username of a user from a
3035
+ * third-party IdP.</p>
2992
3036
  */
2993
3037
  Username: string | undefined;
2994
3038
  /**
@@ -3065,9 +3109,11 @@ export interface AdminUserGlobalSignOutRequest {
3065
3109
  UserPoolId: string | undefined;
3066
3110
  /**
3067
3111
  * @public
3068
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
3069
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
3070
- * your user pool, you can also use their <code>sub</code> in this request.</p>
3112
+ * <p>The username of the user that you want to query or modify. The value of this parameter
3113
+ * is typically your user's username, but it can be any of their alias attributes. If
3114
+ * <code>username</code> isn't an alias attribute in your user pool, this value
3115
+ * must be the <code>sub</code> of a local user or the username of a user from a
3116
+ * third-party IdP.</p>
3071
3117
  */
3072
3118
  Username: string | undefined;
3073
3119
  }
@@ -3336,9 +3382,11 @@ export interface ConfirmForgotPasswordRequest {
3336
3382
  SecretHash?: string;
3337
3383
  /**
3338
3384
  * @public
3339
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
3340
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
3341
- * your user pool, you can also use their <code>sub</code> in this request.</p>
3385
+ * <p>The username of the user that you want to query or modify. The value of this parameter
3386
+ * is typically your user's username, but it can be any of their alias attributes. If
3387
+ * <code>username</code> isn't an alias attribute in your user pool, this value
3388
+ * must be the <code>sub</code> of a local user or the username of a user from a
3389
+ * third-party IdP.</p>
3342
3390
  */
3343
3391
  Username: string | undefined;
3344
3392
  /**
@@ -3426,9 +3474,11 @@ export interface ConfirmSignUpRequest {
3426
3474
  SecretHash?: string;
3427
3475
  /**
3428
3476
  * @public
3429
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
3430
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
3431
- * your user pool, you can also use their <code>sub</code> in this request.</p>
3477
+ * <p>The username of the user that you want to query or modify. The value of this parameter
3478
+ * is typically your user's username, but it can be any of their alias attributes. If
3479
+ * <code>username</code> isn't an alias attribute in your user pool, this value
3480
+ * must be the <code>sub</code> of a local user or the username of a user from a
3481
+ * third-party IdP.</p>
3432
3482
  */
3433
3483
  Username: string | undefined;
3434
3484
  /**
@@ -6665,9 +6715,11 @@ export interface ForgotPasswordRequest {
6665
6715
  UserContextData?: UserContextDataType;
6666
6716
  /**
6667
6717
  * @public
6668
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
6669
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
6670
- * your user pool, you can also use their <code>sub</code> in this request.</p>
6718
+ * <p>The username of the user that you want to query or modify. The value of this parameter
6719
+ * is typically your user's username, but it can be any of their alias attributes. If
6720
+ * <code>username</code> isn't an alias attribute in your user pool, this value
6721
+ * must be the <code>sub</code> of a local user or the username of a user from a
6722
+ * third-party IdP.</p>
6671
6723
  */
6672
6724
  Username: string | undefined;
6673
6725
  /**
@@ -7949,8 +8001,8 @@ export interface ListUsersRequest {
7949
8001
  * @public
7950
8002
  * <p>A filter string of the form "<i>AttributeName</i>
7951
8003
  * <i>Filter-Type</i> "<i>AttributeValue</i>"". Quotation marks
7952
- * within the filter string must be escaped using the backslash (\) character. For example,
7953
- * "<code>family_name</code> = \"Reddy\"".</p>
8004
+ * within the filter string must be escaped using the backslash (<code>\</code>) character. For example,
8005
+ * <code>"family_name = \"Reddy\""</code>.</p>
7954
8006
  * <ul>
7955
8007
  * <li>
7956
8008
  * <p>
@@ -7959,9 +8011,9 @@ export interface ListUsersRequest {
7959
8011
  * </li>
7960
8012
  * <li>
7961
8013
  * <p>
7962
- * <i>Filter-Type</i>: For an exact match, use =, for example,
7963
- * "<code>given_name</code> = \"Jon\"". For a prefix ("starts with") match, use
7964
- * ^=, for example, "<code>given_name</code> ^= \"Jon\"". </p>
8014
+ * <i>Filter-Type</i>: For an exact match, use <code>=</code>, for example,
8015
+ * "<code>given_name = \"Jon\"</code>". For a prefix ("starts with") match, use
8016
+ * <code>^=</code>, for example, "<code>given_name ^= \"Jon\"</code>". </p>
7965
8017
  * </li>
7966
8018
  * <li>
7967
8019
  * <p>
@@ -8133,9 +8185,11 @@ export interface ResendConfirmationCodeRequest {
8133
8185
  UserContextData?: UserContextDataType;
8134
8186
  /**
8135
8187
  * @public
8136
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
8137
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
8138
- * your user pool, you can also use their <code>sub</code> in this request.</p>
8188
+ * <p>The username of the user that you want to query or modify. The value of this parameter
8189
+ * is typically your user's username, but it can be any of their alias attributes. If
8190
+ * <code>username</code> isn't an alias attribute in your user pool, this value
8191
+ * must be the <code>sub</code> of a local user or the username of a user from a
8192
+ * third-party IdP.</p>
8139
8193
  */
8140
8194
  Username: string | undefined;
8141
8195
  /**
@@ -447,9 +447,11 @@ export interface UpdateAuthEventFeedbackRequest {
447
447
  UserPoolId: string | undefined;
448
448
  /**
449
449
  * @public
450
- * <p>The username of the user that you want to query or modify. The value of this parameter is typically your user's
451
- * username, but it can be any of their alias attributes. If <code>username</code> isn't an alias attribute in
452
- * your user pool, you can also use their <code>sub</code> in this request.</p>
450
+ * <p>The username of the user that you want to query or modify. The value of this parameter
451
+ * is typically your user's username, but it can be any of their alias attributes. If
452
+ * <code>username</code> isn't an alias attribute in your user pool, this value
453
+ * must be the <code>sub</code> of a local user or the username of a user from a
454
+ * third-party IdP.</p>
453
455
  */
454
456
  Username: string | undefined;
455
457
  /**
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.529.0",
4
+ "version": "3.530.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,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.529.0",
24
- "@aws-sdk/core": "3.529.0",
25
- "@aws-sdk/credential-provider-node": "3.529.0",
23
+ "@aws-sdk/client-sts": "3.529.1",
24
+ "@aws-sdk/core": "3.529.1",
25
+ "@aws-sdk/credential-provider-node": "3.529.1",
26
26
  "@aws-sdk/middleware-host-header": "3.523.0",
27
27
  "@aws-sdk/middleware-logger": "3.523.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.523.0",