aws-sdk-cognitoidentityprovider 1.87.0 → 1.89.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11eedb46add386558b4bb951be175c814a9846928f3e4fd234398f0d041db189
4
- data.tar.gz: 0ad4bfee3b367903a74e05a6bbcd56dff0c28e9883c8951ec832d8e9ef1c18ad
3
+ metadata.gz: 8660668b8fbb7443ad9a47beea82cff7e345585b6accbfe82a652c2daa7725ae
4
+ data.tar.gz: '0832da785b7ee25e35c68679659593868603e25847aab67392a60ca263c0338d'
5
5
  SHA512:
6
- metadata.gz: fdc17cadb179fbdfd5ffd29bbab8d486291d57bfda1e7cea3ea6d86691d3259f3df33f272abfde8cd2cc156bd3be8ba73d4fd2d199e2d74032271942775575a9
7
- data.tar.gz: cf90efce626bed41ae4abe7dd0b55636718cb29ca3c9badab441e0335475fc9e5facf60e228c1f4034740cbb23bd57b8ddf3b22668681a2816a1d4d3e5940bb9
6
+ metadata.gz: c96f5024088dae13d0d6e023bf0540cb8aa98986e858b084dcad64e20a612f08d98008b3e6461bc474cad22bda2788f4841abba26d5f4db4c27b2914465fca94
7
+ data.tar.gz: e2eb2dd054578928f70ab29f0aee37083dcc24171a979a06aceca5cf9dde7b9a34ac46ed4107370d4d18458329b628a3572a9614648b02c095ecea69bc0807d8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.89.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.88.0 (2024-03-08)
10
+ ------------------
11
+
12
+ * Feature - Add ConcurrentModificationException to SetUserPoolMfaConfig
13
+
4
14
  1.87.0 (2024-02-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.87.0
1
+ 1.89.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CognitoIdentityProvider
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CognitoIdentityProvider
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::CognitoIdentityProvider
347
356
  # @option options [Aws::CognitoIdentityProvider::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CognitoIdentityProvider::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
375
- #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
378
409
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
382
412
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
388
415
  #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -488,7 +512,8 @@ module Aws::CognitoIdentityProvider
488
512
  # The username of the user that you want to query or modify. The value
489
513
  # of this parameter is typically your user's username, but it can be
490
514
  # any of their alias attributes. If `username` isn't an alias attribute
491
- # in your user pool, you can also use their `sub` in this request.
515
+ # in your user pool, this value must be the `sub` of a local user or the
516
+ # username of a user from a third-party IdP.
492
517
  #
493
518
  # @option params [required, String] :group_name
494
519
  # The name of the group that you want to add your user to.
@@ -550,7 +575,8 @@ module Aws::CognitoIdentityProvider
550
575
  # The username of the user that you want to query or modify. The value
551
576
  # of this parameter is typically your user's username, but it can be
552
577
  # any of their alias attributes. If `username` isn't an alias attribute
553
- # in your user pool, you can also use their `sub` in this request.
578
+ # in your user pool, this value must be the `sub` of a local user or the
579
+ # username of a user from a third-party IdP.
554
580
  #
555
581
  # @option params [Hash<String,String>] :client_metadata
556
582
  # A map of custom key-value pairs that you can provide as input for any
@@ -960,7 +986,8 @@ module Aws::CognitoIdentityProvider
960
986
  # The username of the user that you want to query or modify. The value
961
987
  # of this parameter is typically your user's username, but it can be
962
988
  # any of their alias attributes. If `username` isn't an alias attribute
963
- # in your user pool, you can also use their `sub` in this request.
989
+ # in your user pool, this value must be the `sub` of a local user or the
990
+ # username of a user from a third-party IdP.
964
991
  #
965
992
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
966
993
  #
@@ -1009,7 +1036,8 @@ module Aws::CognitoIdentityProvider
1009
1036
  # The username of the user that you want to query or modify. The value
1010
1037
  # of this parameter is typically your user's username, but it can be
1011
1038
  # any of their alias attributes. If `username` isn't an alias attribute
1012
- # in your user pool, you can also use their `sub` in this request.
1039
+ # in your user pool, this value must be the `sub` of a local user or the
1040
+ # username of a user from a third-party IdP.
1013
1041
  #
1014
1042
  # @option params [required, Array<String>] :user_attribute_names
1015
1043
  # An array of strings representing the user attribute names you want to
@@ -1146,7 +1174,8 @@ module Aws::CognitoIdentityProvider
1146
1174
  # The username of the user that you want to query or modify. The value
1147
1175
  # of this parameter is typically your user's username, but it can be
1148
1176
  # any of their alias attributes. If `username` isn't an alias attribute
1149
- # in your user pool, you can also use their `sub` in this request.
1177
+ # in your user pool, this value must be the `sub` of a local user or the
1178
+ # username of a user from a third-party IdP.
1150
1179
  #
1151
1180
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1152
1181
  #
@@ -1193,7 +1222,8 @@ module Aws::CognitoIdentityProvider
1193
1222
  # The username of the user that you want to query or modify. The value
1194
1223
  # of this parameter is typically your user's username, but it can be
1195
1224
  # any of their alias attributes. If `username` isn't an alias attribute
1196
- # in your user pool, you can also use their `sub` in this request.
1225
+ # in your user pool, this value must be the `sub` of a local user or the
1226
+ # username of a user from a third-party IdP.
1197
1227
  #
1198
1228
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1199
1229
  #
@@ -1240,7 +1270,8 @@ module Aws::CognitoIdentityProvider
1240
1270
  # The username of the user that you want to query or modify. The value
1241
1271
  # of this parameter is typically your user's username, but it can be
1242
1272
  # any of their alias attributes. If `username` isn't an alias attribute
1243
- # in your user pool, you can also use their `sub` in this request.
1273
+ # in your user pool, this value must be the `sub` of a local user or the
1274
+ # username of a user from a third-party IdP.
1244
1275
  #
1245
1276
  # @option params [required, String] :device_key
1246
1277
  # The device key.
@@ -1294,7 +1325,8 @@ module Aws::CognitoIdentityProvider
1294
1325
  # The username of the user that you want to query or modify. The value
1295
1326
  # of this parameter is typically your user's username, but it can be
1296
1327
  # any of their alias attributes. If `username` isn't an alias attribute
1297
- # in your user pool, you can also use their `sub` in this request.
1328
+ # in your user pool, this value must be the `sub` of a local user or the
1329
+ # username of a user from a third-party IdP.
1298
1330
  #
1299
1331
  # @return [Types::AdminGetDeviceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1300
1332
  #
@@ -1356,7 +1388,8 @@ module Aws::CognitoIdentityProvider
1356
1388
  # The username of the user that you want to query or modify. The value
1357
1389
  # of this parameter is typically your user's username, but it can be
1358
1390
  # any of their alias attributes. If `username` isn't an alias attribute
1359
- # in your user pool, you can also use their `sub` in this request.
1391
+ # in your user pool, this value must be the `sub` of a local user or the
1392
+ # username of a user from a third-party IdP.
1360
1393
  #
1361
1394
  # @return [Types::AdminGetUserResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1362
1395
  #
@@ -1796,7 +1829,8 @@ module Aws::CognitoIdentityProvider
1796
1829
  # The username of the user that you want to query or modify. The value
1797
1830
  # of this parameter is typically your user's username, but it can be
1798
1831
  # any of their alias attributes. If `username` isn't an alias attribute
1799
- # in your user pool, you can also use their `sub` in this request.
1832
+ # in your user pool, this value must be the `sub` of a local user or the
1833
+ # username of a user from a third-party IdP.
1800
1834
  #
1801
1835
  # @option params [Integer] :limit
1802
1836
  # The limit of the devices request.
@@ -1868,7 +1902,8 @@ module Aws::CognitoIdentityProvider
1868
1902
  # The username of the user that you want to query or modify. The value
1869
1903
  # of this parameter is typically your user's username, but it can be
1870
1904
  # any of their alias attributes. If `username` isn't an alias attribute
1871
- # in your user pool, you can also use their `sub` in this request.
1905
+ # in your user pool, this value must be the `sub` of a local user or the
1906
+ # username of a user from a third-party IdP.
1872
1907
  #
1873
1908
  # @option params [required, String] :user_pool_id
1874
1909
  # The user pool ID for the user pool.
@@ -1946,7 +1981,8 @@ module Aws::CognitoIdentityProvider
1946
1981
  # The username of the user that you want to query or modify. The value
1947
1982
  # of this parameter is typically your user's username, but it can be
1948
1983
  # any of their alias attributes. If `username` isn't an alias attribute
1949
- # in your user pool, you can also use their `sub` in this request.
1984
+ # in your user pool, this value must be the `sub` of a local user or the
1985
+ # username of a user from a third-party IdP.
1950
1986
  #
1951
1987
  # @option params [Integer] :max_results
1952
1988
  # The maximum number of authentication events to return. Returns 60
@@ -2031,7 +2067,8 @@ module Aws::CognitoIdentityProvider
2031
2067
  # The username of the user that you want to query or modify. The value
2032
2068
  # of this parameter is typically your user's username, but it can be
2033
2069
  # any of their alias attributes. If `username` isn't an alias attribute
2034
- # in your user pool, you can also use their `sub` in this request.
2070
+ # in your user pool, this value must be the `sub` of a local user or the
2071
+ # username of a user from a third-party IdP.
2035
2072
  #
2036
2073
  # @option params [required, String] :group_name
2037
2074
  # The group name.
@@ -2058,11 +2095,15 @@ module Aws::CognitoIdentityProvider
2058
2095
  # Resets the specified user's password in a user pool as an
2059
2096
  # administrator. Works on any user.
2060
2097
  #
2098
+ # To use this API operation, your user pool must have self-service
2099
+ # account recovery configured. Use [AdminSetUserPassword][1] if you
2100
+ # manage passwords as an administrator.
2101
+ #
2061
2102
  # <note markdown="1"> This action might generate an SMS text message. Starting June 1, 2021,
2062
2103
  # US telecom carriers require you to register an origination phone
2063
2104
  # number before you can send SMS messages to US phone numbers. If you
2064
2105
  # use SMS text messages in Amazon Cognito, you must register a phone
2065
- # number with [Amazon Pinpoint][1]. Amazon Cognito uses the registered
2106
+ # number with [Amazon Pinpoint][2]. Amazon Cognito uses the registered
2066
2107
  # number automatically. Otherwise, Amazon Cognito users who must receive
2067
2108
  # SMS messages might not be able to sign up, activate their accounts, or
2068
2109
  # sign in.
@@ -2074,7 +2115,7 @@ module Aws::CognitoIdentityProvider
2074
2115
  # mode</a> </i>, you can send messages only to verified phone numbers.
2075
2116
  # After you test your app while in the sandbox environment, you can move
2076
2117
  # out of the sandbox and into production. For more information, see [
2077
- # SMS message settings for Amazon Cognito user pools][2] in the *Amazon
2118
+ # SMS message settings for Amazon Cognito user pools][3] in the *Amazon
2078
2119
  # Cognito Developer Guide*.
2079
2120
  #
2080
2121
  # </note>
@@ -2096,18 +2137,19 @@ module Aws::CognitoIdentityProvider
2096
2137
  #
2097
2138
  # **Learn more**
2098
2139
  #
2099
- # * [Signing Amazon Web Services API Requests][3]
2140
+ # * [Signing Amazon Web Services API Requests][4]
2100
2141
  #
2101
- # * [Using the Amazon Cognito user pools API and user pool endpoints][4]
2142
+ # * [Using the Amazon Cognito user pools API and user pool endpoints][5]
2102
2143
  #
2103
2144
  # </note>
2104
2145
  #
2105
2146
  #
2106
2147
  #
2107
- # [1]: https://console.aws.amazon.com/pinpoint/home/
2108
- # [2]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-sms-settings.html
2109
- # [3]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html
2110
- # [4]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html
2148
+ # [1]: https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminSetUserPassword.html
2149
+ # [2]: https://console.aws.amazon.com/pinpoint/home/
2150
+ # [3]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-sms-settings.html
2151
+ # [4]: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-signing.html
2152
+ # [5]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html
2111
2153
  #
2112
2154
  # @option params [required, String] :user_pool_id
2113
2155
  # The user pool ID for the user pool where you want to reset the user's
@@ -2117,7 +2159,8 @@ module Aws::CognitoIdentityProvider
2117
2159
  # The username of the user that you want to query or modify. The value
2118
2160
  # of this parameter is typically your user's username, but it can be
2119
2161
  # any of their alias attributes. If `username` isn't an alias attribute
2120
- # in your user pool, you can also use their `sub` in this request.
2162
+ # in your user pool, this value must be the `sub` of a local user or the
2163
+ # username of a user from a third-party IdP.
2121
2164
  #
2122
2165
  # @option params [Hash<String,String>] :client_metadata
2123
2166
  # A map of custom key-value pairs that you can provide as input for any
@@ -2500,7 +2543,8 @@ module Aws::CognitoIdentityProvider
2500
2543
  # The username of the user that you want to query or modify. The value
2501
2544
  # of this parameter is typically your user's username, but it can be
2502
2545
  # any of their alias attributes. If `username` isn't an alias attribute
2503
- # in your user pool, you can also use their `sub` in this request.
2546
+ # in your user pool, this value must be the `sub` of a local user or the
2547
+ # username of a user from a third-party IdP.
2504
2548
  #
2505
2549
  # @option params [required, String] :user_pool_id
2506
2550
  # The user pool ID.
@@ -2584,7 +2628,8 @@ module Aws::CognitoIdentityProvider
2584
2628
  # The username of the user that you want to query or modify. The value
2585
2629
  # of this parameter is typically your user's username, but it can be
2586
2630
  # any of their alias attributes. If `username` isn't an alias attribute
2587
- # in your user pool, you can also use their `sub` in this request.
2631
+ # in your user pool, this value must be the `sub` of a local user or the
2632
+ # username of a user from a third-party IdP.
2588
2633
  #
2589
2634
  # @option params [required, String] :password
2590
2635
  # The password for the user.
@@ -2644,7 +2689,8 @@ module Aws::CognitoIdentityProvider
2644
2689
  # The username of the user that you want to query or modify. The value
2645
2690
  # of this parameter is typically your user's username, but it can be
2646
2691
  # any of their alias attributes. If `username` isn't an alias attribute
2647
- # in your user pool, you can also use their `sub` in this request.
2692
+ # in your user pool, this value must be the `sub` of a local user or the
2693
+ # username of a user from a third-party IdP.
2648
2694
  #
2649
2695
  # @option params [required, Array<Types::MFAOptionType>] :mfa_options
2650
2696
  # You can use this parameter only to set an SMS configuration that uses
@@ -2704,7 +2750,8 @@ module Aws::CognitoIdentityProvider
2704
2750
  # The username of the user that you want to query or modify. The value
2705
2751
  # of this parameter is typically your user's username, but it can be
2706
2752
  # any of their alias attributes. If `username` isn't an alias attribute
2707
- # in your user pool, you can also use their `sub` in this request.
2753
+ # in your user pool, this value must be the `sub` of a local user or the
2754
+ # username of a user from a third-party IdP.
2708
2755
  #
2709
2756
  # @option params [required, String] :event_id
2710
2757
  # The authentication event ID.
@@ -2764,7 +2811,8 @@ module Aws::CognitoIdentityProvider
2764
2811
  # The username of the user that you want to query or modify. The value
2765
2812
  # of this parameter is typically your user's username, but it can be
2766
2813
  # any of their alias attributes. If `username` isn't an alias attribute
2767
- # in your user pool, you can also use their `sub` in this request.
2814
+ # in your user pool, this value must be the `sub` of a local user or the
2815
+ # username of a user from a third-party IdP.
2768
2816
  #
2769
2817
  # @option params [required, String] :device_key
2770
2818
  # The device key.
@@ -2852,7 +2900,8 @@ module Aws::CognitoIdentityProvider
2852
2900
  # The username of the user that you want to query or modify. The value
2853
2901
  # of this parameter is typically your user's username, but it can be
2854
2902
  # any of their alias attributes. If `username` isn't an alias attribute
2855
- # in your user pool, you can also use their `sub` in this request.
2903
+ # in your user pool, this value must be the `sub` of a local user or the
2904
+ # username of a user from a third-party IdP.
2856
2905
  #
2857
2906
  # @option params [required, Array<Types::AttributeType>] :user_attributes
2858
2907
  # An array of name-value pairs representing user attributes.
@@ -2991,7 +3040,8 @@ module Aws::CognitoIdentityProvider
2991
3040
  # The username of the user that you want to query or modify. The value
2992
3041
  # of this parameter is typically your user's username, but it can be
2993
3042
  # any of their alias attributes. If `username` isn't an alias attribute
2994
- # in your user pool, you can also use their `sub` in this request.
3043
+ # in your user pool, this value must be the `sub` of a local user or the
3044
+ # username of a user from a third-party IdP.
2995
3045
  #
2996
3046
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2997
3047
  #
@@ -3225,7 +3275,8 @@ module Aws::CognitoIdentityProvider
3225
3275
  # The username of the user that you want to query or modify. The value
3226
3276
  # of this parameter is typically your user's username, but it can be
3227
3277
  # any of their alias attributes. If `username` isn't an alias attribute
3228
- # in your user pool, you can also use their `sub` in this request.
3278
+ # in your user pool, this value must be the `sub` of a local user or the
3279
+ # username of a user from a third-party IdP.
3229
3280
  #
3230
3281
  # @option params [required, String] :confirmation_code
3231
3282
  # The confirmation code from your user's request to reset their
@@ -3361,7 +3412,8 @@ module Aws::CognitoIdentityProvider
3361
3412
  # The username of the user that you want to query or modify. The value
3362
3413
  # of this parameter is typically your user's username, but it can be
3363
3414
  # any of their alias attributes. If `username` isn't an alias attribute
3364
- # in your user pool, you can also use their `sub` in this request.
3415
+ # in your user pool, this value must be the `sub` of a local user or the
3416
+ # username of a user from a third-party IdP.
3365
3417
  #
3366
3418
  # @option params [required, String] :confirmation_code
3367
3419
  # The confirmation code sent by a user's request to confirm
@@ -6157,12 +6209,16 @@ module Aws::CognitoIdentityProvider
6157
6209
  # client secret and you don't provide a `SECRET_HASH` parameter, this
6158
6210
  # API returns `NotAuthorizedException`.
6159
6211
  #
6212
+ # To use this API operation, your user pool must have self-service
6213
+ # account recovery configured. Use [AdminSetUserPassword][3] if you
6214
+ # manage passwords as an administrator.
6215
+ #
6160
6216
  # <note markdown="1"> Amazon Cognito doesn't evaluate Identity and Access Management (IAM)
6161
6217
  # policies in requests for this API operation. For this operation, you
6162
6218
  # can't use IAM credentials to authorize requests, and you can't grant
6163
6219
  # IAM permissions in policies. For more information about authorization
6164
6220
  # models in Amazon Cognito, see [Using the Amazon Cognito user pools API
6165
- # and user pool endpoints][3].
6221
+ # and user pool endpoints][4].
6166
6222
  #
6167
6223
  # </note>
6168
6224
  #
@@ -6170,7 +6226,7 @@ module Aws::CognitoIdentityProvider
6170
6226
  # US telecom carriers require you to register an origination phone
6171
6227
  # number before you can send SMS messages to US phone numbers. If you
6172
6228
  # use SMS text messages in Amazon Cognito, you must register a phone
6173
- # number with [Amazon Pinpoint][4]. Amazon Cognito uses the registered
6229
+ # number with [Amazon Pinpoint][5]. Amazon Cognito uses the registered
6174
6230
  # number automatically. Otherwise, Amazon Cognito users who must receive
6175
6231
  # SMS messages might not be able to sign up, activate their accounts, or
6176
6232
  # sign in.
@@ -6182,7 +6238,7 @@ module Aws::CognitoIdentityProvider
6182
6238
  # mode</a> </i>, you can send messages only to verified phone numbers.
6183
6239
  # After you test your app while in the sandbox environment, you can move
6184
6240
  # out of the sandbox and into production. For more information, see [
6185
- # SMS message settings for Amazon Cognito user pools][5] in the *Amazon
6241
+ # SMS message settings for Amazon Cognito user pools][6] in the *Amazon
6186
6242
  # Cognito Developer Guide*.
6187
6243
  #
6188
6244
  # </note>
@@ -6191,9 +6247,10 @@ module Aws::CognitoIdentityProvider
6191
6247
  #
6192
6248
  # [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/how-to-recover-a-user-account.html
6193
6249
  # [2]: https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_ConfirmForgotPassword.html
6194
- # [3]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html
6195
- # [4]: https://console.aws.amazon.com/pinpoint/home/
6196
- # [5]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-sms-settings.html
6250
+ # [3]: https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminSetUserPassword.html
6251
+ # [4]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pools-API-operations.html
6252
+ # [5]: https://console.aws.amazon.com/pinpoint/home/
6253
+ # [6]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-sms-settings.html
6197
6254
  #
6198
6255
  # @option params [required, String] :client_id
6199
6256
  # The ID of the client associated with the user pool.
@@ -6214,7 +6271,8 @@ module Aws::CognitoIdentityProvider
6214
6271
  # The username of the user that you want to query or modify. The value
6215
6272
  # of this parameter is typically your user's username, but it can be
6216
6273
  # any of their alias attributes. If `username` isn't an alias attribute
6217
- # in your user pool, you can also use their `sub` in this request.
6274
+ # in your user pool, this value must be the `sub` of a local user or the
6275
+ # username of a user from a third-party IdP.
6218
6276
  #
6219
6277
  # @option params [Types::AnalyticsMetadataType] :analytics_metadata
6220
6278
  # The Amazon Pinpoint analytics metadata that contributes to your
@@ -7682,15 +7740,15 @@ module Aws::CognitoIdentityProvider
7682
7740
  # @option params [String] :filter
7683
7741
  # A filter string of the form "*AttributeName* *Filter-Type*
7684
7742
  # "*AttributeValue*"". Quotation marks within the filter string must
7685
- # be escaped using the backslash (\\) character. For example,
7686
- # "`family_name` = \\"Reddy\\"".
7743
+ # be escaped using the backslash (``) character. For example,
7744
+ # `"family_name = "Reddy""`.
7687
7745
  #
7688
7746
  # * *AttributeName*: The name of the attribute to search for. You can
7689
7747
  # only search for one attribute at a time.
7690
7748
  #
7691
- # * *Filter-Type*: For an exact match, use =, for example,
7692
- # "`given_name` = \\"Jon\\"". For a prefix ("starts with")
7693
- # match, use ^=, for example, "`given_name` ^= \\"Jon\\"".
7749
+ # * *Filter-Type*: For an exact match, use `=`, for example,
7750
+ # "`given_name = "Jon"`". For a prefix ("starts with") match,
7751
+ # use `^=`, for example, "`given_name ^= "Jon"`".
7694
7752
  #
7695
7753
  # * *AttributeValue*: The attribute value that must be matched for each
7696
7754
  # user.
@@ -7999,7 +8057,8 @@ module Aws::CognitoIdentityProvider
7999
8057
  # The username of the user that you want to query or modify. The value
8000
8058
  # of this parameter is typically your user's username, but it can be
8001
8059
  # any of their alias attributes. If `username` isn't an alias attribute
8002
- # in your user pool, you can also use their `sub` in this request.
8060
+ # in your user pool, this value must be the `sub` of a local user or the
8061
+ # username of a user from a third-party IdP.
8003
8062
  #
8004
8063
  # @option params [Types::AnalyticsMetadataType] :analytics_metadata
8005
8064
  # The Amazon Pinpoint analytics metadata that contributes to your
@@ -9199,7 +9258,8 @@ module Aws::CognitoIdentityProvider
9199
9258
  # The username of the user that you want to query or modify. The value
9200
9259
  # of this parameter is typically your user's username, but it can be
9201
9260
  # any of their alias attributes. If `username` isn't an alias attribute
9202
- # in your user pool, you can also use their `sub` in this request.
9261
+ # in your user pool, this value must be the `sub` of a local user or the
9262
+ # username of a user from a third-party IdP.
9203
9263
  #
9204
9264
  # @option params [required, String] :event_id
9205
9265
  # The event ID.
@@ -10717,7 +10777,7 @@ module Aws::CognitoIdentityProvider
10717
10777
  params: params,
10718
10778
  config: config)
10719
10779
  context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
10720
- context[:gem_version] = '1.87.0'
10780
+ context[:gem_version] = '1.89.0'
10721
10781
  Seahorse::Client::Request.new(handlers, context)
10722
10782
  end
10723
10783
 
@@ -3492,6 +3492,7 @@ module Aws::CognitoIdentityProvider
3492
3492
  o.output = Shapes::ShapeRef.new(shape: SetUserPoolMfaConfigResponse)
3493
3493
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
3494
3494
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
3495
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
3495
3496
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3496
3497
  o.errors << Shapes::ShapeRef.new(shape: InvalidSmsRoleAccessPolicyException)
3497
3498
  o.errors << Shapes::ShapeRef.new(shape: InvalidSmsRoleTrustRelationshipException)
@@ -133,8 +133,8 @@ module Aws::CognitoIdentityProvider
133
133
  # The username of the user that you want to query or modify. The value
134
134
  # of this parameter is typically your user's username, but it can be
135
135
  # any of their alias attributes. If `username` isn't an alias
136
- # attribute in your user pool, you can also use their `sub` in this
137
- # request.
136
+ # attribute in your user pool, this value must be the `sub` of a local
137
+ # user or the username of a user from a third-party IdP.
138
138
  # @return [String]
139
139
  #
140
140
  # @!attribute [rw] group_name
@@ -161,8 +161,8 @@ module Aws::CognitoIdentityProvider
161
161
  # The username of the user that you want to query or modify. The value
162
162
  # of this parameter is typically your user's username, but it can be
163
163
  # any of their alias attributes. If `username` isn't an alias
164
- # attribute in your user pool, you can also use their `sub` in this
165
- # request.
164
+ # attribute in your user pool, this value must be the `sub` of a local
165
+ # user or the username of a user from a third-party IdP.
166
166
  # @return [String]
167
167
  #
168
168
  # @!attribute [rw] client_metadata
@@ -474,8 +474,8 @@ module Aws::CognitoIdentityProvider
474
474
  # The username of the user that you want to query or modify. The value
475
475
  # of this parameter is typically your user's username, but it can be
476
476
  # any of their alias attributes. If `username` isn't an alias
477
- # attribute in your user pool, you can also use their `sub` in this
478
- # request.
477
+ # attribute in your user pool, this value must be the `sub` of a local
478
+ # user or the username of a user from a third-party IdP.
479
479
  # @return [String]
480
480
  #
481
481
  # @!attribute [rw] user_attribute_names
@@ -514,8 +514,8 @@ module Aws::CognitoIdentityProvider
514
514
  # The username of the user that you want to query or modify. The value
515
515
  # of this parameter is typically your user's username, but it can be
516
516
  # any of their alias attributes. If `username` isn't an alias
517
- # attribute in your user pool, you can also use their `sub` in this
518
- # request.
517
+ # attribute in your user pool, this value must be the `sub` of a local
518
+ # user or the username of a user from a third-party IdP.
519
519
  # @return [String]
520
520
  #
521
521
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminDeleteUserRequest AWS API Documentation
@@ -559,8 +559,8 @@ module Aws::CognitoIdentityProvider
559
559
  # The username of the user that you want to query or modify. The value
560
560
  # of this parameter is typically your user's username, but it can be
561
561
  # any of their alias attributes. If `username` isn't an alias
562
- # attribute in your user pool, you can also use their `sub` in this
563
- # request.
562
+ # attribute in your user pool, this value must be the `sub` of a local
563
+ # user or the username of a user from a third-party IdP.
564
564
  # @return [String]
565
565
  #
566
566
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminDisableUserRequest AWS API Documentation
@@ -590,8 +590,8 @@ module Aws::CognitoIdentityProvider
590
590
  # The username of the user that you want to query or modify. The value
591
591
  # of this parameter is typically your user's username, but it can be
592
592
  # any of their alias attributes. If `username` isn't an alias
593
- # attribute in your user pool, you can also use their `sub` in this
594
- # request.
593
+ # attribute in your user pool, this value must be the `sub` of a local
594
+ # user or the username of a user from a third-party IdP.
595
595
  # @return [String]
596
596
  #
597
597
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminEnableUserRequest AWS API Documentation
@@ -620,8 +620,8 @@ module Aws::CognitoIdentityProvider
620
620
  # The username of the user that you want to query or modify. The value
621
621
  # of this parameter is typically your user's username, but it can be
622
622
  # any of their alias attributes. If `username` isn't an alias
623
- # attribute in your user pool, you can also use their `sub` in this
624
- # request.
623
+ # attribute in your user pool, this value must be the `sub` of a local
624
+ # user or the username of a user from a third-party IdP.
625
625
  # @return [String]
626
626
  #
627
627
  # @!attribute [rw] device_key
@@ -652,8 +652,8 @@ module Aws::CognitoIdentityProvider
652
652
  # The username of the user that you want to query or modify. The value
653
653
  # of this parameter is typically your user's username, but it can be
654
654
  # any of their alias attributes. If `username` isn't an alias
655
- # attribute in your user pool, you can also use their `sub` in this
656
- # request.
655
+ # attribute in your user pool, this value must be the `sub` of a local
656
+ # user or the username of a user from a third-party IdP.
657
657
  # @return [String]
658
658
  #
659
659
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminGetDeviceRequest AWS API Documentation
@@ -691,8 +691,8 @@ module Aws::CognitoIdentityProvider
691
691
  # The username of the user that you want to query or modify. The value
692
692
  # of this parameter is typically your user's username, but it can be
693
693
  # any of their alias attributes. If `username` isn't an alias
694
- # attribute in your user pool, you can also use their `sub` in this
695
- # request.
694
+ # attribute in your user pool, this value must be the `sub` of a local
695
+ # user or the username of a user from a third-party IdP.
696
696
  # @return [String]
697
697
  #
698
698
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminGetUserRequest AWS API Documentation
@@ -1148,8 +1148,8 @@ module Aws::CognitoIdentityProvider
1148
1148
  # The username of the user that you want to query or modify. The value
1149
1149
  # of this parameter is typically your user's username, but it can be
1150
1150
  # any of their alias attributes. If `username` isn't an alias
1151
- # attribute in your user pool, you can also use their `sub` in this
1152
- # request.
1151
+ # attribute in your user pool, this value must be the `sub` of a local
1152
+ # user or the username of a user from a third-party IdP.
1153
1153
  # @return [String]
1154
1154
  #
1155
1155
  # @!attribute [rw] limit
@@ -1204,8 +1204,8 @@ module Aws::CognitoIdentityProvider
1204
1204
  # The username of the user that you want to query or modify. The value
1205
1205
  # of this parameter is typically your user's username, but it can be
1206
1206
  # any of their alias attributes. If `username` isn't an alias
1207
- # attribute in your user pool, you can also use their `sub` in this
1208
- # request.
1207
+ # attribute in your user pool, this value must be the `sub` of a local
1208
+ # user or the username of a user from a third-party IdP.
1209
1209
  # @return [String]
1210
1210
  #
1211
1211
  # @!attribute [rw] user_pool_id
@@ -1260,8 +1260,8 @@ module Aws::CognitoIdentityProvider
1260
1260
  # The username of the user that you want to query or modify. The value
1261
1261
  # of this parameter is typically your user's username, but it can be
1262
1262
  # any of their alias attributes. If `username` isn't an alias
1263
- # attribute in your user pool, you can also use their `sub` in this
1264
- # request.
1263
+ # attribute in your user pool, this value must be the `sub` of a local
1264
+ # user or the username of a user from a third-party IdP.
1265
1265
  # @return [String]
1266
1266
  #
1267
1267
  # @!attribute [rw] max_results
@@ -1311,8 +1311,8 @@ module Aws::CognitoIdentityProvider
1311
1311
  # The username of the user that you want to query or modify. The value
1312
1312
  # of this parameter is typically your user's username, but it can be
1313
1313
  # any of their alias attributes. If `username` isn't an alias
1314
- # attribute in your user pool, you can also use their `sub` in this
1315
- # request.
1314
+ # attribute in your user pool, this value must be the `sub` of a local
1315
+ # user or the username of a user from a third-party IdP.
1316
1316
  # @return [String]
1317
1317
  #
1318
1318
  # @!attribute [rw] group_name
@@ -1341,8 +1341,8 @@ module Aws::CognitoIdentityProvider
1341
1341
  # The username of the user that you want to query or modify. The value
1342
1342
  # of this parameter is typically your user's username, but it can be
1343
1343
  # any of their alias attributes. If `username` isn't an alias
1344
- # attribute in your user pool, you can also use their `sub` in this
1345
- # request.
1344
+ # attribute in your user pool, this value must be the `sub` of a local
1345
+ # user or the username of a user from a third-party IdP.
1346
1346
  # @return [String]
1347
1347
  #
1348
1348
  # @!attribute [rw] client_metadata
@@ -1661,8 +1661,8 @@ module Aws::CognitoIdentityProvider
1661
1661
  # The username of the user that you want to query or modify. The value
1662
1662
  # of this parameter is typically your user's username, but it can be
1663
1663
  # any of their alias attributes. If `username` isn't an alias
1664
- # attribute in your user pool, you can also use their `sub` in this
1665
- # request.
1664
+ # attribute in your user pool, this value must be the `sub` of a local
1665
+ # user or the username of a user from a third-party IdP.
1666
1666
  # @return [String]
1667
1667
  #
1668
1668
  # @!attribute [rw] user_pool_id
@@ -1693,8 +1693,8 @@ module Aws::CognitoIdentityProvider
1693
1693
  # The username of the user that you want to query or modify. The value
1694
1694
  # of this parameter is typically your user's username, but it can be
1695
1695
  # any of their alias attributes. If `username` isn't an alias
1696
- # attribute in your user pool, you can also use their `sub` in this
1697
- # request.
1696
+ # attribute in your user pool, this value must be the `sub` of a local
1697
+ # user or the username of a user from a third-party IdP.
1698
1698
  # @return [String]
1699
1699
  #
1700
1700
  # @!attribute [rw] password
@@ -1732,8 +1732,8 @@ module Aws::CognitoIdentityProvider
1732
1732
  # The username of the user that you want to query or modify. The value
1733
1733
  # of this parameter is typically your user's username, but it can be
1734
1734
  # any of their alias attributes. If `username` isn't an alias
1735
- # attribute in your user pool, you can also use their `sub` in this
1736
- # request.
1735
+ # attribute in your user pool, this value must be the `sub` of a local
1736
+ # user or the username of a user from a third-party IdP.
1737
1737
  # @return [String]
1738
1738
  #
1739
1739
  # @!attribute [rw] mfa_options
@@ -1766,8 +1766,8 @@ module Aws::CognitoIdentityProvider
1766
1766
  # The username of the user that you want to query or modify. The value
1767
1767
  # of this parameter is typically your user's username, but it can be
1768
1768
  # any of their alias attributes. If `username` isn't an alias
1769
- # attribute in your user pool, you can also use their `sub` in this
1770
- # request.
1769
+ # attribute in your user pool, this value must be the `sub` of a local
1770
+ # user or the username of a user from a third-party IdP.
1771
1771
  # @return [String]
1772
1772
  #
1773
1773
  # @!attribute [rw] event_id
@@ -1809,8 +1809,8 @@ module Aws::CognitoIdentityProvider
1809
1809
  # The username of the user that you want to query or modify. The value
1810
1810
  # of this parameter is typically your user's username, but it can be
1811
1811
  # any of their alias attributes. If `username` isn't an alias
1812
- # attribute in your user pool, you can also use their `sub` in this
1813
- # request.
1812
+ # attribute in your user pool, this value must be the `sub` of a local
1813
+ # user or the username of a user from a third-party IdP.
1814
1814
  # @return [String]
1815
1815
  #
1816
1816
  # @!attribute [rw] device_key
@@ -1851,8 +1851,8 @@ module Aws::CognitoIdentityProvider
1851
1851
  # The username of the user that you want to query or modify. The value
1852
1852
  # of this parameter is typically your user's username, but it can be
1853
1853
  # any of their alias attributes. If `username` isn't an alias
1854
- # attribute in your user pool, you can also use their `sub` in this
1855
- # request.
1854
+ # attribute in your user pool, this value must be the `sub` of a local
1855
+ # user or the username of a user from a third-party IdP.
1856
1856
  # @return [String]
1857
1857
  #
1858
1858
  # @!attribute [rw] user_attributes
@@ -1944,8 +1944,8 @@ module Aws::CognitoIdentityProvider
1944
1944
  # The username of the user that you want to query or modify. The value
1945
1945
  # of this parameter is typically your user's username, but it can be
1946
1946
  # any of their alias attributes. If `username` isn't an alias
1947
- # attribute in your user pool, you can also use their `sub` in this
1948
- # request.
1947
+ # attribute in your user pool, this value must be the `sub` of a local
1948
+ # user or the username of a user from a third-party IdP.
1949
1949
  # @return [String]
1950
1950
  #
1951
1951
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminUserGlobalSignOutRequest AWS API Documentation
@@ -2461,8 +2461,8 @@ module Aws::CognitoIdentityProvider
2461
2461
  # The username of the user that you want to query or modify. The value
2462
2462
  # of this parameter is typically your user's username, but it can be
2463
2463
  # any of their alias attributes. If `username` isn't an alias
2464
- # attribute in your user pool, you can also use their `sub` in this
2465
- # request.
2464
+ # attribute in your user pool, this value must be the `sub` of a local
2465
+ # user or the username of a user from a third-party IdP.
2466
2466
  # @return [String]
2467
2467
  #
2468
2468
  # @!attribute [rw] confirmation_code
@@ -2567,8 +2567,8 @@ module Aws::CognitoIdentityProvider
2567
2567
  # The username of the user that you want to query or modify. The value
2568
2568
  # of this parameter is typically your user's username, but it can be
2569
2569
  # any of their alias attributes. If `username` isn't an alias
2570
- # attribute in your user pool, you can also use their `sub` in this
2571
- # request.
2570
+ # attribute in your user pool, this value must be the `sub` of a local
2571
+ # user or the username of a user from a third-party IdP.
2572
2572
  # @return [String]
2573
2573
  #
2574
2574
  # @!attribute [rw] confirmation_code
@@ -4650,8 +4650,8 @@ module Aws::CognitoIdentityProvider
4650
4650
  # The username of the user that you want to query or modify. The value
4651
4651
  # of this parameter is typically your user's username, but it can be
4652
4652
  # any of their alias attributes. If `username` isn't an alias
4653
- # attribute in your user pool, you can also use their `sub` in this
4654
- # request.
4653
+ # attribute in your user pool, this value must be the `sub` of a local
4654
+ # user or the username of a user from a third-party IdP.
4655
4655
  # @return [String]
4656
4656
  #
4657
4657
  # @!attribute [rw] analytics_metadata
@@ -6365,15 +6365,15 @@ module Aws::CognitoIdentityProvider
6365
6365
  # @!attribute [rw] filter
6366
6366
  # A filter string of the form "*AttributeName* *Filter-Type*
6367
6367
  # "*AttributeValue*"". Quotation marks within the filter string
6368
- # must be escaped using the backslash (\\) character. For example,
6369
- # "`family_name` = \\"Reddy\\"".
6368
+ # must be escaped using the backslash (``) character. For example,
6369
+ # `"family_name = "Reddy""`.
6370
6370
  #
6371
6371
  # * *AttributeName*: The name of the attribute to search for. You can
6372
6372
  # only search for one attribute at a time.
6373
6373
  #
6374
- # * *Filter-Type*: For an exact match, use =, for example,
6375
- # "`given_name` = \\"Jon\\"". For a prefix ("starts with")
6376
- # match, use ^=, for example, "`given_name` ^= \\"Jon\\"".
6374
+ # * *Filter-Type*: For an exact match, use `=`, for example,
6375
+ # "`given_name = "Jon"`". For a prefix ("starts with") match,
6376
+ # use `^=`, for example, "`given_name ^= "Jon"`".
6377
6377
  #
6378
6378
  # * *AttributeValue*: The attribute value that must be matched for
6379
6379
  # each user.
@@ -6713,7 +6713,9 @@ module Aws::CognitoIdentityProvider
6713
6713
  # @return [String]
6714
6714
  #
6715
6715
  # @!attribute [rw] max_value
6716
- # The maximum value of an attribute that is of the number data type.
6716
+ # The maximum length of a number attribute value. Must be a number
6717
+ # less than or equal to `2^1023`, represented as a string with a
6718
+ # length of 131072 characters or fewer.
6717
6719
  # @return [String]
6718
6720
  #
6719
6721
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/NumberAttributeConstraintsType AWS API Documentation
@@ -6940,8 +6942,8 @@ module Aws::CognitoIdentityProvider
6940
6942
  # The username of the user that you want to query or modify. The value
6941
6943
  # of this parameter is typically your user's username, but it can be
6942
6944
  # any of their alias attributes. If `username` isn't an alias
6943
- # attribute in your user pool, you can also use their `sub` in this
6944
- # request.
6945
+ # attribute in your user pool, this value must be the `sub` of a local
6946
+ # user or the username of a user from a third-party IdP.
6945
6947
  # @return [String]
6946
6948
  #
6947
6949
  # @!attribute [rw] analytics_metadata
@@ -8157,7 +8159,9 @@ module Aws::CognitoIdentityProvider
8157
8159
  # @return [String]
8158
8160
  #
8159
8161
  # @!attribute [rw] max_length
8160
- # The maximum length.
8162
+ # The maximum length of a string attribute value. Must be a number
8163
+ # less than or equal to `2^1023`, represented as a string with a
8164
+ # length of 131072 characters or fewer.
8161
8165
  # @return [String]
8162
8166
  #
8163
8167
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/StringAttributeConstraintsType AWS API Documentation
@@ -8430,8 +8434,8 @@ module Aws::CognitoIdentityProvider
8430
8434
  # The username of the user that you want to query or modify. The value
8431
8435
  # of this parameter is typically your user's username, but it can be
8432
8436
  # any of their alias attributes. If `username` isn't an alias
8433
- # attribute in your user pool, you can also use their `sub` in this
8434
- # request.
8437
+ # attribute in your user pool, this value must be the `sub` of a local
8438
+ # user or the username of a user from a third-party IdP.
8435
8439
  # @return [String]
8436
8440
  #
8437
8441
  # @!attribute [rw] event_id
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cognitoidentityprovider/customizations'
52
52
  # @!group service
53
53
  module Aws::CognitoIdentityProvider
54
54
 
55
- GEM_VERSION = '1.87.0'
55
+ GEM_VERSION = '1.89.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cognitoidentityprovider
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.87.0
4
+ version: 1.89.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement