aws-sdk-cognitoidentityprovider 1.5.0 → 1.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d219822aab49601e477ca7fd99e0ca63affe1c83
4
- data.tar.gz: bf037a7340be9fd867cb97459d7026f4f1f2b8ae
3
+ metadata.gz: 4c47130851d8ee5708ab4491c4567a967f0ccb93
4
+ data.tar.gz: 846bf2d61033eb942b2a2d9746d6c12bbb79059c
5
5
  SHA512:
6
- metadata.gz: b50dc9dbab34cc00ca60d0cce4c37b5c1aebec3f4b59c939e1da6951951a7753a46865499d00e6a540986392ef7f1d9664373b85f6328efab980cfa43ef94058
7
- data.tar.gz: 54cc4d97cb9f3ba3861f4dd32778825c43322725b1dd80a124c7d22345a88545e75b1c418c676eac17531ca5919e4b66d409dfbded51a89e2c3a447378e66c12
6
+ metadata.gz: a8564d887567c52993e32ec1843c64c6419808ca3e4096dc1781831024676a971ddef4a0501edeed01a1c2dc5a4e67d7687763f0b5691d75b28001ade601680e
7
+ data.tar.gz: 3491ccc740fc24b08746fa2eec5dc730b049cf1d31d9d60c8fa3aa92c616472bb978469c3f56d282466ac11b7ed34ebff4cb328176c2df6bdec9417039a0fec5
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cognitoidentityprovider/customizations'
42
42
  # @service
43
43
  module Aws::CognitoIdentityProvider
44
44
 
45
- GEM_VERSION = '1.5.0'
45
+ GEM_VERSION = '1.6.0'
46
46
 
47
47
  end
@@ -2273,6 +2273,7 @@ module Aws::CognitoIdentityProvider
2273
2273
  # resp.user_pool.sms_configuration_failure #=> String
2274
2274
  # resp.user_pool.email_configuration_failure #=> String
2275
2275
  # resp.user_pool.domain #=> String
2276
+ # resp.user_pool.custom_domain #=> String
2276
2277
  # resp.user_pool.admin_create_user_config.allow_admin_create_user_only #=> Boolean
2277
2278
  # resp.user_pool.admin_create_user_config.unused_account_validity_days #=> Integer
2278
2279
  # resp.user_pool.admin_create_user_config.invite_message_template.sms_message #=> String
@@ -2329,12 +2330,15 @@ module Aws::CognitoIdentityProvider
2329
2330
  #
2330
2331
  # * Be registered with the authorization server.
2331
2332
  #
2332
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
2333
- #
2334
2333
  # * Not include a fragment component.
2335
2334
  #
2336
2335
  # See [OAuth 2.0 - Redirection Endpoint][1].
2337
2336
  #
2337
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
2338
+ # for testing purposes only.
2339
+ #
2340
+ # App callback URLs such as myapp://example are also supported.
2341
+ #
2338
2342
  #
2339
2343
  #
2340
2344
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -2351,12 +2355,15 @@ module Aws::CognitoIdentityProvider
2351
2355
  #
2352
2356
  # * Be registered with the authorization server.
2353
2357
  #
2354
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
2355
- #
2356
2358
  # * Not include a fragment component.
2357
2359
  #
2358
2360
  # See [OAuth 2.0 - Redirection Endpoint][1].
2359
2361
  #
2362
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
2363
+ # for testing purposes only.
2364
+ #
2365
+ # App callback URLs such as myapp://example are also supported.
2366
+ #
2360
2367
  #
2361
2368
  #
2362
2369
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -2459,15 +2466,39 @@ module Aws::CognitoIdentityProvider
2459
2466
  # @option params [required, String] :user_pool_id
2460
2467
  # The user pool ID.
2461
2468
  #
2462
- # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2469
+ # @option params [Types::CustomDomainConfigType] :custom_domain_config
2470
+ # The configuration for a custom domain that hosts the sign-up and
2471
+ # sign-in webpages for your application.
2472
+ #
2473
+ # Provide this parameter only if you want to use own custom domain for
2474
+ # your user pool. Otherwise, you can exclude this parameter and use the
2475
+ # Amazon Cognito hosted domain instead.
2476
+ #
2477
+ # For more information about the hosted domain and custom domains, see
2478
+ # [Configuring a User Pool Domain][1].
2479
+ #
2480
+ #
2481
+ #
2482
+ # [1]: http://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-assign-domain.html
2483
+ #
2484
+ # @return [Types::CreateUserPoolDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2485
+ #
2486
+ # * {Types::CreateUserPoolDomainResponse#cloud_front_domain #cloud_front_domain} => String
2463
2487
  #
2464
2488
  # @example Request syntax with placeholder values
2465
2489
  #
2466
2490
  # resp = client.create_user_pool_domain({
2467
2491
  # domain: "DomainType", # required
2468
2492
  # user_pool_id: "UserPoolIdType", # required
2493
+ # custom_domain_config: {
2494
+ # certificate_arn: "ArnType", # required
2495
+ # },
2469
2496
  # })
2470
2497
  #
2498
+ # @example Response structure
2499
+ #
2500
+ # resp.cloud_front_domain #=> String
2501
+ #
2471
2502
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CreateUserPoolDomain AWS API Documentation
2472
2503
  #
2473
2504
  # @overload create_user_pool_domain(params = {})
@@ -2944,6 +2975,7 @@ module Aws::CognitoIdentityProvider
2944
2975
  # resp.user_pool.sms_configuration_failure #=> String
2945
2976
  # resp.user_pool.email_configuration_failure #=> String
2946
2977
  # resp.user_pool.domain #=> String
2978
+ # resp.user_pool.custom_domain #=> String
2947
2979
  # resp.user_pool.admin_create_user_config.allow_admin_create_user_only #=> Boolean
2948
2980
  # resp.user_pool.admin_create_user_config.unused_account_validity_days #=> Integer
2949
2981
  # resp.user_pool.admin_create_user_config.invite_message_template.sms_message #=> String
@@ -2962,7 +2994,7 @@ module Aws::CognitoIdentityProvider
2962
2994
  end
2963
2995
 
2964
2996
  # Client method for returning the configuration information and metadata
2965
- # of the specified user pool client.
2997
+ # of the specified user pool app client.
2966
2998
  #
2967
2999
  # @option params [required, String] :user_pool_id
2968
3000
  # The user pool ID for the user pool you want to describe.
@@ -3046,6 +3078,7 @@ module Aws::CognitoIdentityProvider
3046
3078
  # resp.domain_description.cloud_front_distribution #=> String
3047
3079
  # resp.domain_description.version #=> String
3048
3080
  # resp.domain_description.status #=> String, one of "CREATING", "DELETING", "UPDATING", "ACTIVE", "FAILED"
3081
+ # resp.domain_description.custom_domain_config.certificate_arn #=> String
3049
3082
  #
3050
3083
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/DescribeUserPoolDomain AWS API Documentation
3051
3084
  #
@@ -4004,10 +4037,10 @@ module Aws::CognitoIdentityProvider
4004
4037
  #
4005
4038
  # * `preferred_username`
4006
4039
  #
4007
- # * `cognito:user_status` (called **Enabled** in the Console)
4008
- # (case-sensitive)
4040
+ # * `cognito:user_status` (called **Status** in the Console)
4041
+ # (case-insensitive)
4009
4042
  #
4010
- # * `status` (case-insensitive)
4043
+ # * `status (called Enabled in the Console) (case-sensitive)`
4011
4044
  #
4012
4045
  # * `sub`
4013
4046
  #
@@ -5029,7 +5062,9 @@ module Aws::CognitoIdentityProvider
5029
5062
  req.send_request(options)
5030
5063
  end
5031
5064
 
5032
- # Updates the specified user pool with the specified attributes.
5065
+ # Updates the specified user pool with the specified attributes. If you
5066
+ # don't provide a value for an attribute, it will be set to the default
5067
+ # value. You can get a list of the current user pool settings with .
5033
5068
  #
5034
5069
  # @option params [required, String] :user_pool_id
5035
5070
  # The user pool ID for the user pool you want to update.
@@ -5175,8 +5210,10 @@ module Aws::CognitoIdentityProvider
5175
5210
  req.send_request(options)
5176
5211
  end
5177
5212
 
5178
- # Allows the developer to update the specified user pool client and
5179
- # password policy.
5213
+ # Updates the specified user pool app client with the specified
5214
+ # attributes. If you don't provide a value for an attribute, it will be
5215
+ # set to the default value. You can get a list of the current user pool
5216
+ # app client settings with .
5180
5217
  #
5181
5218
  # @option params [required, String] :user_pool_id
5182
5219
  # The user pool ID for the user pool where you want to update the user
@@ -5214,12 +5251,15 @@ module Aws::CognitoIdentityProvider
5214
5251
  #
5215
5252
  # * Be registered with the authorization server.
5216
5253
  #
5217
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
5218
- #
5219
5254
  # * Not include a fragment component.
5220
5255
  #
5221
5256
  # See [OAuth 2.0 - Redirection Endpoint][1].
5222
5257
  #
5258
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
5259
+ # for testing purposes only.
5260
+ #
5261
+ # App callback URLs such as myapp://example are also supported.
5262
+ #
5223
5263
  #
5224
5264
  #
5225
5265
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -5236,12 +5276,15 @@ module Aws::CognitoIdentityProvider
5236
5276
  #
5237
5277
  # * Be registered with the authorization server.
5238
5278
  #
5239
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
5240
- #
5241
5279
  # * Not include a fragment component.
5242
5280
  #
5243
5281
  # See [OAuth 2.0 - Redirection Endpoint][1].
5244
5282
  #
5283
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
5284
+ # for testing purposes only.
5285
+ #
5286
+ # App callback URLs such as myapp://example are also supported.
5287
+ #
5245
5288
  #
5246
5289
  #
5247
5290
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -5424,7 +5467,7 @@ module Aws::CognitoIdentityProvider
5424
5467
  params: params,
5425
5468
  config: config)
5426
5469
  context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
5427
- context[:gem_version] = '1.5.0'
5470
+ context[:gem_version] = '1.6.0'
5428
5471
  Seahorse::Client::Request.new(handlers, context)
5429
5472
  end
5430
5473
 
@@ -142,6 +142,7 @@ module Aws::CognitoIdentityProvider
142
142
  CreateUserPoolResponse = Shapes::StructureShape.new(name: 'CreateUserPoolResponse')
143
143
  CustomAttributeNameType = Shapes::StringShape.new(name: 'CustomAttributeNameType')
144
144
  CustomAttributesListType = Shapes::ListShape.new(name: 'CustomAttributesListType')
145
+ CustomDomainConfigType = Shapes::StructureShape.new(name: 'CustomDomainConfigType')
145
146
  DateType = Shapes::TimestampShape.new(name: 'DateType')
146
147
  DefaultEmailOptionType = Shapes::StringShape.new(name: 'DefaultEmailOptionType')
147
148
  DeleteGroupRequest = Shapes::StructureShape.new(name: 'DeleteGroupRequest')
@@ -854,8 +855,10 @@ module Aws::CognitoIdentityProvider
854
855
 
855
856
  CreateUserPoolDomainRequest.add_member(:domain, Shapes::ShapeRef.new(shape: DomainType, required: true, location_name: "Domain"))
856
857
  CreateUserPoolDomainRequest.add_member(:user_pool_id, Shapes::ShapeRef.new(shape: UserPoolIdType, required: true, location_name: "UserPoolId"))
858
+ CreateUserPoolDomainRequest.add_member(:custom_domain_config, Shapes::ShapeRef.new(shape: CustomDomainConfigType, location_name: "CustomDomainConfig"))
857
859
  CreateUserPoolDomainRequest.struct_class = Types::CreateUserPoolDomainRequest
858
860
 
861
+ CreateUserPoolDomainResponse.add_member(:cloud_front_domain, Shapes::ShapeRef.new(shape: DomainType, location_name: "CloudFrontDomain"))
859
862
  CreateUserPoolDomainResponse.struct_class = Types::CreateUserPoolDomainResponse
860
863
 
861
864
  CreateUserPoolRequest.add_member(:pool_name, Shapes::ShapeRef.new(shape: UserPoolNameType, required: true, location_name: "PoolName"))
@@ -884,6 +887,9 @@ module Aws::CognitoIdentityProvider
884
887
 
885
888
  CustomAttributesListType.member = Shapes::ShapeRef.new(shape: SchemaAttributeType)
886
889
 
890
+ CustomDomainConfigType.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ArnType, required: true, location_name: "CertificateArn"))
891
+ CustomDomainConfigType.struct_class = Types::CustomDomainConfigType
892
+
887
893
  DeleteGroupRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: GroupNameType, required: true, location_name: "GroupName"))
888
894
  DeleteGroupRequest.add_member(:user_pool_id, Shapes::ShapeRef.new(shape: UserPoolIdType, required: true, location_name: "UserPoolId"))
889
895
  DeleteGroupRequest.struct_class = Types::DeleteGroupRequest
@@ -988,9 +994,10 @@ module Aws::CognitoIdentityProvider
988
994
  DomainDescriptionType.add_member(:aws_account_id, Shapes::ShapeRef.new(shape: AWSAccountIdType, location_name: "AWSAccountId"))
989
995
  DomainDescriptionType.add_member(:domain, Shapes::ShapeRef.new(shape: DomainType, location_name: "Domain"))
990
996
  DomainDescriptionType.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3BucketType, location_name: "S3Bucket"))
991
- DomainDescriptionType.add_member(:cloud_front_distribution, Shapes::ShapeRef.new(shape: ArnType, location_name: "CloudFrontDistribution"))
997
+ DomainDescriptionType.add_member(:cloud_front_distribution, Shapes::ShapeRef.new(shape: StringType, location_name: "CloudFrontDistribution"))
992
998
  DomainDescriptionType.add_member(:version, Shapes::ShapeRef.new(shape: DomainVersionType, location_name: "Version"))
993
999
  DomainDescriptionType.add_member(:status, Shapes::ShapeRef.new(shape: DomainStatusType, location_name: "Status"))
1000
+ DomainDescriptionType.add_member(:custom_domain_config, Shapes::ShapeRef.new(shape: CustomDomainConfigType, location_name: "CustomDomainConfig"))
994
1001
  DomainDescriptionType.struct_class = Types::DomainDescriptionType
995
1002
 
996
1003
  EmailConfigurationType.add_member(:source_arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "SourceArn"))
@@ -1659,6 +1666,7 @@ module Aws::CognitoIdentityProvider
1659
1666
  UserPoolType.add_member(:sms_configuration_failure, Shapes::ShapeRef.new(shape: StringType, location_name: "SmsConfigurationFailure"))
1660
1667
  UserPoolType.add_member(:email_configuration_failure, Shapes::ShapeRef.new(shape: StringType, location_name: "EmailConfigurationFailure"))
1661
1668
  UserPoolType.add_member(:domain, Shapes::ShapeRef.new(shape: DomainType, location_name: "Domain"))
1669
+ UserPoolType.add_member(:custom_domain, Shapes::ShapeRef.new(shape: DomainType, location_name: "CustomDomain"))
1662
1670
  UserPoolType.add_member(:admin_create_user_config, Shapes::ShapeRef.new(shape: AdminCreateUserConfigType, location_name: "AdminCreateUserConfig"))
1663
1671
  UserPoolType.add_member(:user_pool_add_ons, Shapes::ShapeRef.new(shape: UserPoolAddOnsType, location_name: "UserPoolAddOns"))
1664
1672
  UserPoolType.add_member(:arn, Shapes::ShapeRef.new(shape: ArnType, location_name: "Arn"))
@@ -2338,6 +2346,7 @@ module Aws::CognitoIdentityProvider
2338
2346
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2339
2347
  o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
2340
2348
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2349
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2341
2350
  o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
2342
2351
  end)
2343
2352
 
@@ -2641,12 +2641,15 @@ module Aws::CognitoIdentityProvider
2641
2641
  #
2642
2642
  # * Be registered with the authorization server.
2643
2643
  #
2644
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
2645
- #
2646
2644
  # * Not include a fragment component.
2647
2645
  #
2648
2646
  # See [OAuth 2.0 - Redirection Endpoint][1].
2649
2647
  #
2648
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
2649
+ # for testing purposes only.
2650
+ #
2651
+ # App callback URLs such as myapp://example are also supported.
2652
+ #
2650
2653
  #
2651
2654
  #
2652
2655
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -2665,12 +2668,15 @@ module Aws::CognitoIdentityProvider
2665
2668
  #
2666
2669
  # * Be registered with the authorization server.
2667
2670
  #
2668
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
2669
- #
2670
2671
  # * Not include a fragment component.
2671
2672
  #
2672
2673
  # See [OAuth 2.0 - Redirection Endpoint][1].
2673
2674
  #
2675
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
2676
+ # for testing purposes only.
2677
+ #
2678
+ # App callback URLs such as myapp://example are also supported.
2679
+ #
2674
2680
  #
2675
2681
  #
2676
2682
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -2740,6 +2746,9 @@ module Aws::CognitoIdentityProvider
2740
2746
  # {
2741
2747
  # domain: "DomainType", # required
2742
2748
  # user_pool_id: "UserPoolIdType", # required
2749
+ # custom_domain_config: {
2750
+ # certificate_arn: "ArnType", # required
2751
+ # },
2743
2752
  # }
2744
2753
  #
2745
2754
  # @!attribute [rw] domain
@@ -2750,17 +2759,42 @@ module Aws::CognitoIdentityProvider
2750
2759
  # The user pool ID.
2751
2760
  # @return [String]
2752
2761
  #
2762
+ # @!attribute [rw] custom_domain_config
2763
+ # The configuration for a custom domain that hosts the sign-up and
2764
+ # sign-in webpages for your application.
2765
+ #
2766
+ # Provide this parameter only if you want to use own custom domain for
2767
+ # your user pool. Otherwise, you can exclude this parameter and use
2768
+ # the Amazon Cognito hosted domain instead.
2769
+ #
2770
+ # For more information about the hosted domain and custom domains, see
2771
+ # [Configuring a User Pool Domain][1].
2772
+ #
2773
+ #
2774
+ #
2775
+ # [1]: http://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-assign-domain.html
2776
+ # @return [Types::CustomDomainConfigType]
2777
+ #
2753
2778
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CreateUserPoolDomainRequest AWS API Documentation
2754
2779
  #
2755
2780
  class CreateUserPoolDomainRequest < Struct.new(
2756
2781
  :domain,
2757
- :user_pool_id)
2782
+ :user_pool_id,
2783
+ :custom_domain_config)
2758
2784
  include Aws::Structure
2759
2785
  end
2760
2786
 
2787
+ # @!attribute [rw] cloud_front_domain
2788
+ # The Amazon CloudFront endpoint that you use as the target of the
2789
+ # alias that you set up with your Domain Name Service (DNS) provider.
2790
+ # @return [String]
2791
+ #
2761
2792
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CreateUserPoolDomainResponse AWS API Documentation
2762
2793
  #
2763
- class CreateUserPoolDomainResponse < Aws::EmptyStructure; end
2794
+ class CreateUserPoolDomainResponse < Struct.new(
2795
+ :cloud_front_domain)
2796
+ include Aws::Structure
2797
+ end
2764
2798
 
2765
2799
  # Represents the request to create a user pool.
2766
2800
  #
@@ -2997,6 +3031,29 @@ module Aws::CognitoIdentityProvider
2997
3031
  include Aws::Structure
2998
3032
  end
2999
3033
 
3034
+ # The configuration for a custom domain that hosts the sign-up and
3035
+ # sign-in webpages for your application.
3036
+ #
3037
+ # @note When making an API call, you may pass CustomDomainConfigType
3038
+ # data as a hash:
3039
+ #
3040
+ # {
3041
+ # certificate_arn: "ArnType", # required
3042
+ # }
3043
+ #
3044
+ # @!attribute [rw] certificate_arn
3045
+ # The Amazon Resource Name (ARN) of an AWS Certificate Manager SSL
3046
+ # certificate. You use this certificate for the subdomain of your
3047
+ # custom domain.
3048
+ # @return [String]
3049
+ #
3050
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CustomDomainConfigType AWS API Documentation
3051
+ #
3052
+ class CustomDomainConfigType < Struct.new(
3053
+ :certificate_arn)
3054
+ include Aws::Structure
3055
+ end
3056
+
3000
3057
  # @note When making an API call, you may pass DeleteGroupRequest
3001
3058
  # data as a hash:
3002
3059
  #
@@ -3566,6 +3623,11 @@ module Aws::CognitoIdentityProvider
3566
3623
  # The domain status.
3567
3624
  # @return [String]
3568
3625
  #
3626
+ # @!attribute [rw] custom_domain_config
3627
+ # The configuration for a custom domain that hosts the sign-up and
3628
+ # sign-in webpages for your application.
3629
+ # @return [Types::CustomDomainConfigType]
3630
+ #
3569
3631
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/DomainDescriptionType AWS API Documentation
3570
3632
  #
3571
3633
  class DomainDescriptionType < Struct.new(
@@ -3575,7 +3637,8 @@ module Aws::CognitoIdentityProvider
3575
3637
  :s3_bucket,
3576
3638
  :cloud_front_distribution,
3577
3639
  :version,
3578
- :status)
3640
+ :status,
3641
+ :custom_domain_config)
3579
3642
  include Aws::Structure
3580
3643
  end
3581
3644
 
@@ -5021,10 +5084,10 @@ module Aws::CognitoIdentityProvider
5021
5084
  #
5022
5085
  # * `preferred_username`
5023
5086
  #
5024
- # * `cognito:user_status` (called **Enabled** in the Console)
5025
- # (case-sensitive)
5087
+ # * `cognito:user_status` (called **Status** in the Console)
5088
+ # (case-insensitive)
5026
5089
  #
5027
- # * `status` (case-insensitive)
5090
+ # * `status (called Enabled in the Console) (case-sensitive)`
5028
5091
  #
5029
5092
  # * `sub`
5030
5093
  #
@@ -6812,12 +6875,15 @@ module Aws::CognitoIdentityProvider
6812
6875
  #
6813
6876
  # * Be registered with the authorization server.
6814
6877
  #
6815
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
6816
- #
6817
6878
  # * Not include a fragment component.
6818
6879
  #
6819
6880
  # See [OAuth 2.0 - Redirection Endpoint][1].
6820
6881
  #
6882
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
6883
+ # for testing purposes only.
6884
+ #
6885
+ # App callback URLs such as myapp://example are also supported.
6886
+ #
6821
6887
  #
6822
6888
  #
6823
6889
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -6836,12 +6902,15 @@ module Aws::CognitoIdentityProvider
6836
6902
  #
6837
6903
  # * Be registered with the authorization server.
6838
6904
  #
6839
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
6840
- #
6841
6905
  # * Not include a fragment component.
6842
6906
  #
6843
6907
  # See [OAuth 2.0 - Redirection Endpoint][1].
6844
6908
  #
6909
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
6910
+ # for testing purposes only.
6911
+ #
6912
+ # App callback URLs such as myapp://example are also supported.
6913
+ #
6845
6914
  #
6846
6915
  #
6847
6916
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -7311,12 +7380,15 @@ module Aws::CognitoIdentityProvider
7311
7380
  #
7312
7381
  # * Be registered with the authorization server.
7313
7382
  #
7314
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
7315
- #
7316
7383
  # * Not include a fragment component.
7317
7384
  #
7318
7385
  # See [OAuth 2.0 - Redirection Endpoint][1].
7319
7386
  #
7387
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
7388
+ # for testing purposes only.
7389
+ #
7390
+ # App callback URLs such as myapp://example are also supported.
7391
+ #
7320
7392
  #
7321
7393
  #
7322
7394
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -7335,12 +7407,15 @@ module Aws::CognitoIdentityProvider
7335
7407
  #
7336
7408
  # * Be registered with the authorization server.
7337
7409
  #
7338
- # * Not use HTTP without TLS (i.e. use HTTPS instead of HTTP).
7339
- #
7340
7410
  # * Not include a fragment component.
7341
7411
  #
7342
7412
  # See [OAuth 2.0 - Redirection Endpoint][1].
7343
7413
  #
7414
+ # Amazon Cognito requires HTTPS over HTTP except for http://localhost
7415
+ # for testing purposes only.
7416
+ #
7417
+ # App callback URLs such as myapp://example are also supported.
7418
+ #
7344
7419
  #
7345
7420
  #
7346
7421
  # [1]: https://tools.ietf.org/html/rfc6749#section-3.1.2
@@ -7578,6 +7653,9 @@ module Aws::CognitoIdentityProvider
7578
7653
  # with it.
7579
7654
  # @return [String]
7580
7655
  #
7656
+ # @!attribute [rw] custom_domain
7657
+ # @return [String]
7658
+ #
7581
7659
  # @!attribute [rw] admin_create_user_config
7582
7660
  # The configuration for `AdminCreateUser` requests.
7583
7661
  # @return [Types::AdminCreateUserConfigType]
@@ -7618,6 +7696,7 @@ module Aws::CognitoIdentityProvider
7618
7696
  :sms_configuration_failure,
7619
7697
  :email_configuration_failure,
7620
7698
  :domain,
7699
+ :custom_domain,
7621
7700
  :admin_create_user_config,
7622
7701
  :user_pool_add_ons,
7623
7702
  :arn)
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.5.0
4
+ version: 1.6.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: 2018-06-26 00:00:00.000000000 Z
11
+ date: 2018-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core