aws-sdk-cognitoidentityprovider 1.88.0 → 1.90.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +99 -54
- data/lib/aws-sdk-cognitoidentityprovider/client_api.rb +1 -0
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +113 -123
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 540ce315a5ba3faff756de2203885187f39f008b1c463620ed7534587aa753b4
|
4
|
+
data.tar.gz: 7d4b83e78d373152f038dd7bde00f3afe692952236c28b5e8a20e631f4bd778d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dbccc6eb1afd06acf3f7957269468a7e637bdeda1a3c4bbc1a87e68c76ea5a8e39b998e73cfe52326e4b3463176554d06fdbeff1741f87e21450a441f77010f7
|
7
|
+
data.tar.gz: 9ce88a2ef145324aaf2c0382df33757d80750e41dfe49f5ed8c81c436e23c525368ee6ef7faf1f0fa2e34d309ffce836f0ebd140782fad4985777912683d926e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.90.0 (2024-04-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add LimitExceededException to SignUp errors
|
8
|
+
|
9
|
+
1.89.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.88.0 (2024-03-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.90.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
|
-
#
|
201
|
-
#
|
202
|
-
#
|
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 [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
376
|
-
#
|
377
|
-
#
|
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 [
|
380
|
-
#
|
381
|
-
# connection.
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
382
412
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
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 [
|
390
|
-
#
|
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
|
@@ -3790,9 +3814,14 @@ module Aws::CognitoIdentityProvider
|
|
3790
3814
|
# The user pool ID for the user pool.
|
3791
3815
|
#
|
3792
3816
|
# @option params [required, String] :identifier
|
3793
|
-
# A unique resource server identifier for the resource server.
|
3794
|
-
#
|
3795
|
-
#
|
3817
|
+
# A unique resource server identifier for the resource server. The
|
3818
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
3819
|
+
# can also set an API URL like
|
3820
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
3821
|
+
#
|
3822
|
+
# Amazon Cognito represents scopes in the access token in the format
|
3823
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier strings
|
3824
|
+
# increase the size of your access tokens.
|
3796
3825
|
#
|
3797
3826
|
# @option params [required, String] :name
|
3798
3827
|
# A friendly name for the resource server.
|
@@ -5021,7 +5050,9 @@ module Aws::CognitoIdentityProvider
|
|
5021
5050
|
# A list of allowed logout URLs for the IdPs.
|
5022
5051
|
#
|
5023
5052
|
# @option params [String] :default_redirect_uri
|
5024
|
-
# The default redirect URI.
|
5053
|
+
# The default redirect URI. In app clients with one assigned IdP,
|
5054
|
+
# replaces `redirect_uri` in authentication requests. Must be in the
|
5055
|
+
# `CallbackURLs` list.
|
5025
5056
|
#
|
5026
5057
|
# A redirect URI must:
|
5027
5058
|
#
|
@@ -5031,7 +5062,7 @@ module Aws::CognitoIdentityProvider
|
|
5031
5062
|
#
|
5032
5063
|
# * Not include a fragment component.
|
5033
5064
|
#
|
5034
|
-
#
|
5065
|
+
# For more information, see [Default redirect URI][1].
|
5035
5066
|
#
|
5036
5067
|
# Amazon Cognito requires HTTPS over HTTP except for http://localhost
|
5037
5068
|
# for testing purposes only.
|
@@ -5040,7 +5071,7 @@ module Aws::CognitoIdentityProvider
|
|
5040
5071
|
#
|
5041
5072
|
#
|
5042
5073
|
#
|
5043
|
-
# [1]: https://
|
5074
|
+
# [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-client-apps.html#cognito-user-pools-app-idp-settings-about
|
5044
5075
|
#
|
5045
5076
|
# @option params [Array<String>] :allowed_o_auth_flows
|
5046
5077
|
# The OAuth grant types that you want your app client to generate. To
|
@@ -5733,7 +5764,14 @@ module Aws::CognitoIdentityProvider
|
|
5733
5764
|
# The user pool ID for the user pool that hosts the resource server.
|
5734
5765
|
#
|
5735
5766
|
# @option params [required, String] :identifier
|
5736
|
-
#
|
5767
|
+
# A unique resource server identifier for the resource server. The
|
5768
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
5769
|
+
# can also set an API URL like
|
5770
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
5771
|
+
#
|
5772
|
+
# Amazon Cognito represents scopes in the access token in the format
|
5773
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier strings
|
5774
|
+
# increase the size of your access tokens.
|
5737
5775
|
#
|
5738
5776
|
# @return [Types::DescribeResourceServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5739
5777
|
#
|
@@ -9616,7 +9654,14 @@ module Aws::CognitoIdentityProvider
|
|
9616
9654
|
# The user pool ID for the user pool.
|
9617
9655
|
#
|
9618
9656
|
# @option params [required, String] :identifier
|
9619
|
-
#
|
9657
|
+
# A unique resource server identifier for the resource server. The
|
9658
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
9659
|
+
# can also set an API URL like
|
9660
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
9661
|
+
#
|
9662
|
+
# Amazon Cognito represents scopes in the access token in the format
|
9663
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier strings
|
9664
|
+
# increase the size of your access tokens.
|
9620
9665
|
#
|
9621
9666
|
# @option params [required, String] :name
|
9622
9667
|
# The name of the resource server.
|
@@ -10753,7 +10798,7 @@ module Aws::CognitoIdentityProvider
|
|
10753
10798
|
params: params,
|
10754
10799
|
config: config)
|
10755
10800
|
context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
|
10756
|
-
context[:gem_version] = '1.
|
10801
|
+
context[:gem_version] = '1.90.0'
|
10757
10802
|
Seahorse::Client::Request.new(handlers, context)
|
10758
10803
|
end
|
10759
10804
|
|
@@ -3534,6 +3534,7 @@ module Aws::CognitoIdentityProvider
|
|
3534
3534
|
o.errors << Shapes::ShapeRef.new(shape: UsernameExistsException)
|
3535
3535
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
3536
3536
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
3537
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
3537
3538
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSmsRoleAccessPolicyException)
|
3538
3539
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSmsRoleTrustRelationshipException)
|
3539
3540
|
o.errors << Shapes::ShapeRef.new(shape: InvalidEmailRoleAccessPolicyException)
|
@@ -720,12 +720,10 @@ module Aws::CognitoIdentityProvider
|
|
720
720
|
# @return [Time]
|
721
721
|
#
|
722
722
|
# @!attribute [rw] user_last_modified_date
|
723
|
-
# The date and time
|
724
|
-
#
|
725
|
-
#
|
726
|
-
#
|
727
|
-
#
|
728
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
723
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
724
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
725
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
726
|
+
# object.
|
729
727
|
# @return [Time]
|
730
728
|
#
|
731
729
|
# @!attribute [rw] enabled
|
@@ -2125,12 +2123,10 @@ module Aws::CognitoIdentityProvider
|
|
2125
2123
|
# @return [String]
|
2126
2124
|
#
|
2127
2125
|
# @!attribute [rw] creation_date
|
2128
|
-
# The date and time
|
2129
|
-
#
|
2130
|
-
#
|
2131
|
-
#
|
2132
|
-
#
|
2133
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
2126
|
+
# The date and time when the item was created. Amazon Cognito returns
|
2127
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
2128
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
2129
|
+
# object.
|
2134
2130
|
# @return [Time]
|
2135
2131
|
#
|
2136
2132
|
# @!attribute [rw] event_response
|
@@ -2937,9 +2933,14 @@ module Aws::CognitoIdentityProvider
|
|
2937
2933
|
# @return [String]
|
2938
2934
|
#
|
2939
2935
|
# @!attribute [rw] identifier
|
2940
|
-
# A unique resource server identifier for the resource server.
|
2941
|
-
#
|
2942
|
-
#
|
2936
|
+
# A unique resource server identifier for the resource server. The
|
2937
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
2938
|
+
# can also set an API URL like
|
2939
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
2940
|
+
#
|
2941
|
+
# Amazon Cognito represents scopes in the access token in the format
|
2942
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier
|
2943
|
+
# strings increase the size of your access tokens.
|
2943
2944
|
# @return [String]
|
2944
2945
|
#
|
2945
2946
|
# @!attribute [rw] name
|
@@ -3220,7 +3221,9 @@ module Aws::CognitoIdentityProvider
|
|
3220
3221
|
# @return [Array<String>]
|
3221
3222
|
#
|
3222
3223
|
# @!attribute [rw] default_redirect_uri
|
3223
|
-
# The default redirect URI.
|
3224
|
+
# The default redirect URI. In app clients with one assigned IdP,
|
3225
|
+
# replaces `redirect_uri` in authentication requests. Must be in the
|
3226
|
+
# `CallbackURLs` list.
|
3224
3227
|
#
|
3225
3228
|
# A redirect URI must:
|
3226
3229
|
#
|
@@ -3230,7 +3233,7 @@ module Aws::CognitoIdentityProvider
|
|
3230
3233
|
#
|
3231
3234
|
# * Not include a fragment component.
|
3232
3235
|
#
|
3233
|
-
#
|
3236
|
+
# For more information, see [Default redirect URI][1].
|
3234
3237
|
#
|
3235
3238
|
# Amazon Cognito requires HTTPS over HTTP except for http://localhost
|
3236
3239
|
# for testing purposes only.
|
@@ -3239,7 +3242,7 @@ module Aws::CognitoIdentityProvider
|
|
3239
3242
|
#
|
3240
3243
|
#
|
3241
3244
|
#
|
3242
|
-
# [1]: https://
|
3245
|
+
# [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/user-pool-settings-client-apps.html#cognito-user-pools-app-idp-settings-about
|
3243
3246
|
# @return [String]
|
3244
3247
|
#
|
3245
3248
|
# @!attribute [rw] allowed_o_auth_flows
|
@@ -3954,7 +3957,14 @@ module Aws::CognitoIdentityProvider
|
|
3954
3957
|
# @return [String]
|
3955
3958
|
#
|
3956
3959
|
# @!attribute [rw] identifier
|
3957
|
-
#
|
3960
|
+
# A unique resource server identifier for the resource server. The
|
3961
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
3962
|
+
# can also set an API URL like
|
3963
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
3964
|
+
#
|
3965
|
+
# Amazon Cognito represents scopes in the access token in the format
|
3966
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier
|
3967
|
+
# strings increase the size of your access tokens.
|
3958
3968
|
# @return [String]
|
3959
3969
|
#
|
3960
3970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/DescribeResourceServerRequest AWS API Documentation
|
@@ -4237,12 +4247,10 @@ module Aws::CognitoIdentityProvider
|
|
4237
4247
|
# @return [Time]
|
4238
4248
|
#
|
4239
4249
|
# @!attribute [rw] device_last_modified_date
|
4240
|
-
# The date and time
|
4241
|
-
#
|
4242
|
-
#
|
4243
|
-
#
|
4244
|
-
#
|
4245
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
4250
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
4251
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
4252
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
4253
|
+
# object.
|
4246
4254
|
# @return [Time]
|
4247
4255
|
#
|
4248
4256
|
# @!attribute [rw] device_last_authenticated_date
|
@@ -5189,21 +5197,17 @@ module Aws::CognitoIdentityProvider
|
|
5189
5197
|
# @return [Integer]
|
5190
5198
|
#
|
5191
5199
|
# @!attribute [rw] last_modified_date
|
5192
|
-
# The date and time
|
5193
|
-
#
|
5194
|
-
#
|
5195
|
-
#
|
5196
|
-
#
|
5197
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
5200
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
5201
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
5202
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
5203
|
+
# object.
|
5198
5204
|
# @return [Time]
|
5199
5205
|
#
|
5200
5206
|
# @!attribute [rw] creation_date
|
5201
|
-
# The date and time
|
5202
|
-
#
|
5203
|
-
#
|
5204
|
-
#
|
5205
|
-
#
|
5206
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
5207
|
+
# The date and time when the item was created. Amazon Cognito returns
|
5208
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
5209
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
5210
|
+
# object.
|
5207
5211
|
# @return [Time]
|
5208
5212
|
#
|
5209
5213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/GroupType AWS API Documentation
|
@@ -5387,21 +5391,17 @@ module Aws::CognitoIdentityProvider
|
|
5387
5391
|
# @return [Array<String>]
|
5388
5392
|
#
|
5389
5393
|
# @!attribute [rw] last_modified_date
|
5390
|
-
# The date and time
|
5391
|
-
#
|
5392
|
-
#
|
5393
|
-
#
|
5394
|
-
#
|
5395
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
5394
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
5395
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
5396
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
5397
|
+
# object.
|
5396
5398
|
# @return [Time]
|
5397
5399
|
#
|
5398
5400
|
# @!attribute [rw] creation_date
|
5399
|
-
# The date and time
|
5400
|
-
#
|
5401
|
-
#
|
5402
|
-
#
|
5403
|
-
#
|
5404
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
5401
|
+
# The date and time when the item was created. Amazon Cognito returns
|
5402
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
5403
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
5404
|
+
# object.
|
5405
5405
|
# @return [Time]
|
5406
5406
|
#
|
5407
5407
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/IdentityProviderType AWS API Documentation
|
@@ -6852,12 +6852,10 @@ module Aws::CognitoIdentityProvider
|
|
6852
6852
|
# @return [Time]
|
6853
6853
|
#
|
6854
6854
|
# @!attribute [rw] creation_date
|
6855
|
-
# The date and time
|
6856
|
-
#
|
6857
|
-
#
|
6858
|
-
#
|
6859
|
-
#
|
6860
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
6855
|
+
# The date and time when the item was created. Amazon Cognito returns
|
6856
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
6857
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
6858
|
+
# object.
|
6861
6859
|
# @return [Time]
|
6862
6860
|
#
|
6863
6861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/ProviderDescription AWS API Documentation
|
@@ -7060,7 +7058,14 @@ module Aws::CognitoIdentityProvider
|
|
7060
7058
|
# @return [String]
|
7061
7059
|
#
|
7062
7060
|
# @!attribute [rw] identifier
|
7063
|
-
#
|
7061
|
+
# A unique resource server identifier for the resource server. The
|
7062
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
7063
|
+
# can also set an API URL like
|
7064
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
7065
|
+
#
|
7066
|
+
# Amazon Cognito represents scopes in the access token in the format
|
7067
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier
|
7068
|
+
# strings increase the size of your access tokens.
|
7064
7069
|
# @return [String]
|
7065
7070
|
#
|
7066
7071
|
# @!attribute [rw] name
|
@@ -7362,12 +7367,10 @@ module Aws::CognitoIdentityProvider
|
|
7362
7367
|
# @return [Types::RiskExceptionConfigurationType]
|
7363
7368
|
#
|
7364
7369
|
# @!attribute [rw] last_modified_date
|
7365
|
-
# The date and time
|
7366
|
-
#
|
7367
|
-
#
|
7368
|
-
#
|
7369
|
-
#
|
7370
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
7370
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
7371
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
7372
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
7373
|
+
# object.
|
7371
7374
|
# @return [Time]
|
7372
7375
|
#
|
7373
7376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/RiskConfigurationType AWS API Documentation
|
@@ -8287,21 +8290,17 @@ module Aws::CognitoIdentityProvider
|
|
8287
8290
|
# @return [String]
|
8288
8291
|
#
|
8289
8292
|
# @!attribute [rw] last_modified_date
|
8290
|
-
# The date and time
|
8291
|
-
#
|
8292
|
-
#
|
8293
|
-
#
|
8294
|
-
#
|
8295
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
8293
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
8294
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
8295
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
8296
|
+
# object.
|
8296
8297
|
# @return [Time]
|
8297
8298
|
#
|
8298
8299
|
# @!attribute [rw] creation_date
|
8299
|
-
# The date and time
|
8300
|
-
#
|
8301
|
-
#
|
8302
|
-
#
|
8303
|
-
#
|
8304
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
8300
|
+
# The date and time when the item was created. Amazon Cognito returns
|
8301
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
8302
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
8303
|
+
# object.
|
8305
8304
|
# @return [Time]
|
8306
8305
|
#
|
8307
8306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/UICustomizationType AWS API Documentation
|
@@ -8723,7 +8722,14 @@ module Aws::CognitoIdentityProvider
|
|
8723
8722
|
# @return [String]
|
8724
8723
|
#
|
8725
8724
|
# @!attribute [rw] identifier
|
8726
|
-
#
|
8725
|
+
# A unique resource server identifier for the resource server. The
|
8726
|
+
# identifier can be an API friendly name like `solar-system-data`. You
|
8727
|
+
# can also set an API URL like
|
8728
|
+
# `https://solar-system-data-api.example.com` as your identifier.
|
8729
|
+
#
|
8730
|
+
# Amazon Cognito represents scopes in the access token in the format
|
8731
|
+
# `$resource-server-identifier/$scope`. Longer scope-identifier
|
8732
|
+
# strings increase the size of your access tokens.
|
8727
8733
|
# @return [String]
|
8728
8734
|
#
|
8729
8735
|
# @!attribute [rw] name
|
@@ -9578,12 +9584,10 @@ module Aws::CognitoIdentityProvider
|
|
9578
9584
|
# @return [String]
|
9579
9585
|
#
|
9580
9586
|
# @!attribute [rw] creation_date
|
9581
|
-
# The date and time
|
9582
|
-
#
|
9583
|
-
#
|
9584
|
-
#
|
9585
|
-
#
|
9586
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
9587
|
+
# The date and time when the item was created. Amazon Cognito returns
|
9588
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
9589
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
9590
|
+
# object.
|
9587
9591
|
# @return [Time]
|
9588
9592
|
#
|
9589
9593
|
# @!attribute [rw] start_date
|
@@ -9787,21 +9791,17 @@ module Aws::CognitoIdentityProvider
|
|
9787
9791
|
# @return [String]
|
9788
9792
|
#
|
9789
9793
|
# @!attribute [rw] last_modified_date
|
9790
|
-
# The date and time
|
9791
|
-
#
|
9792
|
-
#
|
9793
|
-
#
|
9794
|
-
#
|
9795
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
9794
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
9795
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
9796
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
9797
|
+
# object.
|
9796
9798
|
# @return [Time]
|
9797
9799
|
#
|
9798
9800
|
# @!attribute [rw] creation_date
|
9799
|
-
# The date and time
|
9800
|
-
#
|
9801
|
-
#
|
9802
|
-
#
|
9803
|
-
#
|
9804
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
9801
|
+
# The date and time when the item was created. Amazon Cognito returns
|
9802
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
9803
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
9804
|
+
# object.
|
9805
9805
|
# @return [Time]
|
9806
9806
|
#
|
9807
9807
|
# @!attribute [rw] refresh_token_validity
|
@@ -10192,21 +10192,17 @@ module Aws::CognitoIdentityProvider
|
|
10192
10192
|
# @return [String]
|
10193
10193
|
#
|
10194
10194
|
# @!attribute [rw] last_modified_date
|
10195
|
-
# The date and time
|
10196
|
-
#
|
10197
|
-
#
|
10198
|
-
#
|
10199
|
-
#
|
10200
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
10195
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
10196
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
10197
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
10198
|
+
# object.
|
10201
10199
|
# @return [Time]
|
10202
10200
|
#
|
10203
10201
|
# @!attribute [rw] creation_date
|
10204
|
-
# The date and time
|
10205
|
-
#
|
10206
|
-
#
|
10207
|
-
#
|
10208
|
-
#
|
10209
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
10202
|
+
# The date and time when the item was created. Amazon Cognito returns
|
10203
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
10204
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
10205
|
+
# object.
|
10210
10206
|
# @return [Time]
|
10211
10207
|
#
|
10212
10208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/UserPoolDescriptionType AWS API Documentation
|
@@ -10285,21 +10281,17 @@ module Aws::CognitoIdentityProvider
|
|
10285
10281
|
# @return [String]
|
10286
10282
|
#
|
10287
10283
|
# @!attribute [rw] last_modified_date
|
10288
|
-
# The date and time
|
10289
|
-
#
|
10290
|
-
#
|
10291
|
-
#
|
10292
|
-
#
|
10293
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
10284
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
10285
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
10286
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
10287
|
+
# object.
|
10294
10288
|
# @return [Time]
|
10295
10289
|
#
|
10296
10290
|
# @!attribute [rw] creation_date
|
10297
|
-
# The date and time
|
10298
|
-
#
|
10299
|
-
#
|
10300
|
-
#
|
10301
|
-
#
|
10302
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
10291
|
+
# The date and time when the item was created. Amazon Cognito returns
|
10292
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
10293
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
10294
|
+
# object.
|
10303
10295
|
# @return [Time]
|
10304
10296
|
#
|
10305
10297
|
# @!attribute [rw] schema_attributes
|
@@ -10581,12 +10573,10 @@ module Aws::CognitoIdentityProvider
|
|
10581
10573
|
# @return [Time]
|
10582
10574
|
#
|
10583
10575
|
# @!attribute [rw] user_last_modified_date
|
10584
|
-
# The date and time
|
10585
|
-
#
|
10586
|
-
#
|
10587
|
-
#
|
10588
|
-
#
|
10589
|
-
# [1]: https://www.iso.org/iso-8601-date-and-time-format.html
|
10576
|
+
# The date and time when the item was modified. Amazon Cognito returns
|
10577
|
+
# this timestamp in UNIX epoch time format. Your SDK might render the
|
10578
|
+
# output in a human-readable format like ISO 8601 or a Java `Date`
|
10579
|
+
# object.
|
10590
10580
|
# @return [Time]
|
10591
10581
|
#
|
10592
10582
|
# @!attribute [rw] enabled
|
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.
|
4
|
+
version: 1.90.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-
|
11
|
+
date: 2024-04-26 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.
|
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.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|