aws-sdk-cognitoidentityprovider 1.110.0 → 1.111.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: 6bd0b8fe91b8cb7e68d1bd4a43db5ca28cae3ecebe412137906b6b78dd3c658d
4
- data.tar.gz: bc80d7db38686ed87a9213c08aaf403f9003a1f0df01d83233f0aea40935c02e
3
+ metadata.gz: d95b173ac6233daee177ad5977e36c0c0ef9926fa6e139b2c56fed2580930a02
4
+ data.tar.gz: 8f25cbbeaa42efce522d50233e5934a45de01117003796d32e1bd2d095777388
5
5
  SHA512:
6
- metadata.gz: 5c804323baebcfbb7a98ed8a1c00bb43cd5280d876b134c94310e25089e77aced46be638094931e3593ac75142d8a7219f60491bb25c8502d789fe61a81cc068
7
- data.tar.gz: c8defef041fec404d7a0b5624f5636ef21a2ecb367cdc935b90a49e9b88e0a6db977a5fd05d633f90916116556c52d72b01c43cf0e0729f4765e7918ede971bb
6
+ metadata.gz: a109efab5c87602e7f1658a0730f46b4b31b9d77e81c3d5143edd9534b51e453daa869335c90863c7a2f9fba8a33abf82ce506571cfae7e8c45bd8a8e968c7be
7
+ data.tar.gz: f339021926e3a009f0d3b3ba9f9ecff092dd8abdc7de3eb5c0cd65bb09e8b14c97f0e1940c272838d19f65c476844917bd9cf933706780166f2911981e65b3fc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.0 (2024-12-09)
5
+ ------------------
6
+
7
+ * Feature - Change `CustomDomainConfig` from a required to an optional parameter for the `UpdateUserPoolDomain` operation.
8
+
4
9
  1.110.0 (2024-11-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.111.0
@@ -11726,7 +11726,7 @@ module Aws::CognitoIdentityProvider
11726
11726
  #
11727
11727
  # [1]: https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-managed-login.html
11728
11728
  #
11729
- # @option params [required, Types::CustomDomainConfigType] :custom_domain_config
11729
+ # @option params [Types::CustomDomainConfigType] :custom_domain_config
11730
11730
  # The configuration for a custom domain that hosts the sign-up and
11731
11731
  # sign-in pages for your application. Use this object to specify an SSL
11732
11732
  # certificate that is managed by ACM.
@@ -11753,7 +11753,7 @@ module Aws::CognitoIdentityProvider
11753
11753
  # domain: "DomainType", # required
11754
11754
  # user_pool_id: "UserPoolIdType", # required
11755
11755
  # managed_login_version: 1,
11756
- # custom_domain_config: { # required
11756
+ # custom_domain_config: {
11757
11757
  # certificate_arn: "ArnType", # required
11758
11758
  # },
11759
11759
  # })
@@ -11908,7 +11908,7 @@ module Aws::CognitoIdentityProvider
11908
11908
  tracer: tracer
11909
11909
  )
11910
11910
  context[:gem_name] = 'aws-sdk-cognitoidentityprovider'
11911
- context[:gem_version] = '1.110.0'
11911
+ context[:gem_version] = '1.111.0'
11912
11912
  Seahorse::Client::Request.new(handlers, context)
11913
11913
  end
11914
11914
 
@@ -2069,7 +2069,7 @@ module Aws::CognitoIdentityProvider
2069
2069
  UpdateUserPoolDomainRequest.add_member(:domain, Shapes::ShapeRef.new(shape: DomainType, required: true, location_name: "Domain"))
2070
2070
  UpdateUserPoolDomainRequest.add_member(:user_pool_id, Shapes::ShapeRef.new(shape: UserPoolIdType, required: true, location_name: "UserPoolId"))
2071
2071
  UpdateUserPoolDomainRequest.add_member(:managed_login_version, Shapes::ShapeRef.new(shape: WrappedIntegerType, location_name: "ManagedLoginVersion"))
2072
- UpdateUserPoolDomainRequest.add_member(:custom_domain_config, Shapes::ShapeRef.new(shape: CustomDomainConfigType, required: true, location_name: "CustomDomainConfig"))
2072
+ UpdateUserPoolDomainRequest.add_member(:custom_domain_config, Shapes::ShapeRef.new(shape: CustomDomainConfigType, location_name: "CustomDomainConfig"))
2073
2073
  UpdateUserPoolDomainRequest.struct_class = Types::UpdateUserPoolDomainRequest
2074
2074
 
2075
2075
  UpdateUserPoolDomainResponse.add_member(:managed_login_version, Shapes::ShapeRef.new(shape: WrappedIntegerType, location_name: "ManagedLoginVersion"))
@@ -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.110.0'
57
+ GEM_VERSION = '1.111.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1934,7 +1934,7 @@ module Aws
1934
1934
  domain: ::String,
1935
1935
  user_pool_id: ::String,
1936
1936
  ?managed_login_version: ::Integer,
1937
- custom_domain_config: {
1937
+ ?custom_domain_config: {
1938
1938
  certificate_arn: ::String
1939
1939
  }
1940
1940
  ) -> _UpdateUserPoolDomainResponseSuccess
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.110.0
4
+ version: 1.111.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-22 00:00:00.000000000 Z
11
+ date: 2024-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core