aws-sdk-cognitoidentityprovider 1.144.0 → 1.145.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
  SHA256:
3
- metadata.gz: 2b30b3c80eccac76786e91712eec231f03f9193948e682a04bd7f65a962f7ee8
4
- data.tar.gz: d9e2bcae1a67646de0940d53a7fe23943c6a0e73035902db0997e8675c5bf343
3
+ metadata.gz: b6d76e0739d68ceecdf2dc621c82df4e167c8e2f794fc42112cc1f47c8ed7209
4
+ data.tar.gz: 10da5b733cb761b9e9875247e74defaace8bd3ec74f06ce34253923b06bd99a0
5
5
  SHA512:
6
- metadata.gz: 392c24d91b9857f50621f6b6a474a15f8045ef410d199f5edb588ce119ea99c5cc306ae4b63b244416d04203f6f3969c04e39fa49f1fe49df8e6609bd172aa7a
7
- data.tar.gz: 4b13494116d81bce9d37207c9c5f6eb1ea1b7a54649a4292eab9725bf45bb3b7194021432e3a4b6cffb5a1c17fd737770dd22383ab6deccef6afa861d5da759e
6
+ metadata.gz: 77512b0cf6d02f4c9bd9eaff2ef359223829ee130de476641f4e8b0cd834b09136f0c9e695af1175623877631da0deae7dd5155f80e318599d63a81b84ca5017
7
+ data.tar.gz: 289044320295b9822e12755b4c43344bfe75ac07371fa4464ace126a317cc9e16f56bf5eb87da95439ec508ef3b288e341eee611dfd9cbb57705127a94fdfc9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.145.0 (2026-06-18)
5
+ ------------------
6
+
7
+ * Feature - In order to support the new TLS Self-Service feature, this change adds SecurityPolicyType to CustomDomainConfigType. During CreateUserPoolDomain and UpdateUserPoolDomain this is used to select a custom domain's TLS enforcement, and for DescribeUserPoolDomain it informs users about the current TLS.
8
+
4
9
  1.144.0 (2026-06-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.144.0
1
+ 1.145.0
@@ -6442,6 +6442,7 @@ module Aws::CognitoIdentityProvider
6442
6442
  # managed_login_version: 1,
6443
6443
  # custom_domain_config: {
6444
6444
  # certificate_arn: "ArnType", # required
6445
+ # security_policy: "TLS_V1", # accepts TLS_V1, TLS_V1_2_2021, TLS_V1_3_2025
6445
6446
  # },
6446
6447
  # routing: {
6447
6448
  # failover: {
@@ -7796,6 +7797,7 @@ module Aws::CognitoIdentityProvider
7796
7797
  # resp.domain_description.version #=> String
7797
7798
  # resp.domain_description.status #=> String, one of "CREATING", "DELETING", "UPDATING", "ACTIVE", "FAILED"
7798
7799
  # resp.domain_description.custom_domain_config.certificate_arn #=> String
7800
+ # resp.domain_description.custom_domain_config.security_policy #=> String, one of "TLS_V1", "TLS_V1_2_2021", "TLS_V1_3_2025"
7799
7801
  # resp.domain_description.managed_login_version #=> Integer
7800
7802
  # resp.domain_description.routing.failover.secondary_region #=> String
7801
7803
  # resp.domain_description.routing.failover.primary_route_53_health_check_id #=> String
@@ -13833,6 +13835,7 @@ module Aws::CognitoIdentityProvider
13833
13835
  # managed_login_version: 1,
13834
13836
  # custom_domain_config: {
13835
13837
  # certificate_arn: "ArnType", # required
13838
+ # security_policy: "TLS_V1", # accepts TLS_V1, TLS_V1_2_2021, TLS_V1_3_2025
13836
13839
  # },
13837
13840
  # routing: {
13838
13841
  # failover: {
@@ -14074,7 +14077,7 @@ module Aws::CognitoIdentityProvider
14074
14077
  tracer: tracer
14075
14078
  )
14076
14079
  context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
14077
- context[:gem_version] = '1.144.0'
14080
+ context[:gem_version] = '1.145.0'
14078
14081
  Seahorse::Client::Request.new(handlers, context)
14079
14082
  end
14080
14083
 
@@ -474,6 +474,7 @@ module Aws::CognitoIdentityProvider
474
474
  SearchedAttributeNamesListType = Shapes::ListShape.new(name: 'SearchedAttributeNamesListType')
475
475
  SecretCodeType = Shapes::StringShape.new(name: 'SecretCodeType')
476
476
  SecretHashType = Shapes::StringShape.new(name: 'SecretHashType')
477
+ SecurityPolicyType = Shapes::StringShape.new(name: 'SecurityPolicyType')
477
478
  SessionType = Shapes::StringShape.new(name: 'SessionType')
478
479
  SetLogDeliveryConfigurationRequest = Shapes::StructureShape.new(name: 'SetLogDeliveryConfigurationRequest')
479
480
  SetLogDeliveryConfigurationResponse = Shapes::StructureShape.new(name: 'SetLogDeliveryConfigurationResponse')
@@ -1215,6 +1216,7 @@ module Aws::CognitoIdentityProvider
1215
1216
  CustomAttributesListType.member = Shapes::ShapeRef.new(shape: SchemaAttributeType)
1216
1217
 
1217
1218
  CustomDomainConfigType.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ArnType, required: true, location_name: "CertificateArn"))
1219
+ CustomDomainConfigType.add_member(:security_policy, Shapes::ShapeRef.new(shape: SecurityPolicyType, location_name: "SecurityPolicy"))
1218
1220
  CustomDomainConfigType.struct_class = Types::CustomDomainConfigType
1219
1221
 
1220
1222
  CustomEmailLambdaVersionConfigType.add_member(:lambda_version, Shapes::ShapeRef.new(shape: CustomEmailSenderLambdaVersionType, required: true, location_name: "LambdaVersion"))
@@ -4951,7 +4951,8 @@ module Aws::CognitoIdentityProvider
4951
4951
  include Aws::Structure
4952
4952
  end
4953
4953
 
4954
- # The configuration for a hosted UI custom domain.
4954
+ # The configuration for a custom domain, including the SSL certificate
4955
+ # and TLS security policy.
4955
4956
  #
4956
4957
  # @!attribute [rw] certificate_arn
4957
4958
  # The Amazon Resource Name (ARN) of an Certificate Manager SSL
@@ -4959,10 +4960,26 @@ module Aws::CognitoIdentityProvider
4959
4960
  # custom domain.
4960
4961
  # @return [String]
4961
4962
  #
4963
+ # @!attribute [rw] security_policy
4964
+ # The security policy for the custom domain. Defines the minimum TLS
4965
+ # version and cipher suites that CloudFront uses when communicating
4966
+ # with viewers (clients). Valid values are as follows:
4967
+ #
4968
+ # * `TLS_V1`: Supports TLS 1.0 and later. Provides the broadest client
4969
+ # compatibility.
4970
+ #
4971
+ # * `TLS_V1_2_2021`: Supports TLS 1.2 and later with 2021 cipher
4972
+ # suites. Recommended minimum for most use cases.
4973
+ #
4974
+ # * `TLS_V1_3_2025`: Supports TLS 1.3 and later with 2025 cipher
4975
+ # suites. Provides the strongest security posture.
4976
+ # @return [String]
4977
+ #
4962
4978
  # @see http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/CustomDomainConfigType AWS API Documentation
4963
4979
  #
4964
4980
  class CustomDomainConfigType < Struct.new(
4965
- :certificate_arn)
4981
+ :certificate_arn,
4982
+ :security_policy)
4966
4983
  SENSITIVE = []
4967
4984
  include Aws::Structure
4968
4985
  end
@@ -54,7 +54,7 @@ module Aws::CognitoIdentityProvider
54
54
  autoload :EndpointProvider, 'aws-sdk-cognitoidentityprovider/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-cognitoidentityprovider/endpoints'
56
56
 
57
- GEM_VERSION = '1.144.0'
57
+ GEM_VERSION = '1.145.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -790,7 +790,8 @@ module Aws
790
790
  user_pool_id: ::String,
791
791
  ?managed_login_version: ::Integer,
792
792
  ?custom_domain_config: {
793
- certificate_arn: ::String
793
+ certificate_arn: ::String,
794
+ security_policy: ("TLS_V1" | "TLS_V1_2_2021" | "TLS_V1_3_2025")?
794
795
  },
795
796
  ?routing: {
796
797
  failover: {
@@ -1969,7 +1970,8 @@ module Aws
1969
1970
  user_pool_id: ::String,
1970
1971
  ?managed_login_version: ::Integer,
1971
1972
  ?custom_domain_config: {
1972
- certificate_arn: ::String
1973
+ certificate_arn: ::String,
1974
+ security_policy: ("TLS_V1" | "TLS_V1_2_2021" | "TLS_V1_3_2025")?
1973
1975
  },
1974
1976
  ?routing: {
1975
1977
  failover: {
data/sig/types.rbs CHANGED
@@ -746,6 +746,7 @@ module Aws::CognitoIdentityProvider
746
746
 
747
747
  class CustomDomainConfigType
748
748
  attr_accessor certificate_arn: ::String
749
+ attr_accessor security_policy: ("TLS_V1" | "TLS_V1_2_2021" | "TLS_V1_3_2025")
749
750
  SENSITIVE: []
750
751
  end
751
752
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cognitoidentityprovider
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.144.0
4
+ version: 1.145.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services