aws-sdk-cognitoidentityprovider 1.84.0 → 1.85.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +525 -163
- data/lib/aws-sdk-cognitoidentityprovider/client_api.rb +7 -0
- data/lib/aws-sdk-cognitoidentityprovider/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +568 -157
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- metadata +2 -2
@@ -327,6 +327,8 @@ module Aws::CognitoIdentityProvider
|
|
327
327
|
PasswordType = Shapes::StringShape.new(name: 'PasswordType')
|
328
328
|
PoolQueryLimitType = Shapes::IntegerShape.new(name: 'PoolQueryLimitType')
|
329
329
|
PreSignedUrlType = Shapes::StringShape.new(name: 'PreSignedUrlType')
|
330
|
+
PreTokenGenerationLambdaVersionType = Shapes::StringShape.new(name: 'PreTokenGenerationLambdaVersionType')
|
331
|
+
PreTokenGenerationVersionConfigType = Shapes::StructureShape.new(name: 'PreTokenGenerationVersionConfigType')
|
330
332
|
PrecedenceType = Shapes::IntegerShape.new(name: 'PrecedenceType')
|
331
333
|
PreconditionNotMetException = Shapes::StructureShape.new(name: 'PreconditionNotMetException')
|
332
334
|
PreventUserExistenceErrorTypes = Shapes::StringShape.new(name: 'PreventUserExistenceErrorTypes')
|
@@ -1325,6 +1327,7 @@ module Aws::CognitoIdentityProvider
|
|
1325
1327
|
LambdaConfigType.add_member(:create_auth_challenge, Shapes::ShapeRef.new(shape: ArnType, location_name: "CreateAuthChallenge"))
|
1326
1328
|
LambdaConfigType.add_member(:verify_auth_challenge_response, Shapes::ShapeRef.new(shape: ArnType, location_name: "VerifyAuthChallengeResponse"))
|
1327
1329
|
LambdaConfigType.add_member(:pre_token_generation, Shapes::ShapeRef.new(shape: ArnType, location_name: "PreTokenGeneration"))
|
1330
|
+
LambdaConfigType.add_member(:pre_token_generation_config, Shapes::ShapeRef.new(shape: PreTokenGenerationVersionConfigType, location_name: "PreTokenGenerationConfig"))
|
1328
1331
|
LambdaConfigType.add_member(:user_migration, Shapes::ShapeRef.new(shape: ArnType, location_name: "UserMigration"))
|
1329
1332
|
LambdaConfigType.add_member(:custom_sms_sender, Shapes::ShapeRef.new(shape: CustomSMSLambdaVersionConfigType, location_name: "CustomSMSSender"))
|
1330
1333
|
LambdaConfigType.add_member(:custom_email_sender, Shapes::ShapeRef.new(shape: CustomEmailLambdaVersionConfigType, location_name: "CustomEmailSender"))
|
@@ -1489,6 +1492,10 @@ module Aws::CognitoIdentityProvider
|
|
1489
1492
|
PasswordResetRequiredException.add_member(:message, Shapes::ShapeRef.new(shape: MessageType, location_name: "message"))
|
1490
1493
|
PasswordResetRequiredException.struct_class = Types::PasswordResetRequiredException
|
1491
1494
|
|
1495
|
+
PreTokenGenerationVersionConfigType.add_member(:lambda_version, Shapes::ShapeRef.new(shape: PreTokenGenerationLambdaVersionType, required: true, location_name: "LambdaVersion"))
|
1496
|
+
PreTokenGenerationVersionConfigType.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: ArnType, required: true, location_name: "LambdaArn"))
|
1497
|
+
PreTokenGenerationVersionConfigType.struct_class = Types::PreTokenGenerationVersionConfigType
|
1498
|
+
|
1492
1499
|
PreconditionNotMetException.add_member(:message, Shapes::ShapeRef.new(shape: MessageType, location_name: "message"))
|
1493
1500
|
PreconditionNotMetException.struct_class = Types::PreconditionNotMetException
|
1494
1501
|
|
@@ -32,7 +32,7 @@ module Aws::CognitoIdentityProvider
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://cognito-idp-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|