aws-sdk-cognitoidentityprovider 1.65.0 → 1.66.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cognitoidentityprovider/client.rb +363 -190
- data/lib/aws-sdk-cognitoidentityprovider/client_api.rb +11 -0
- data/lib/aws-sdk-cognitoidentityprovider/types.rb +581 -299
- data/lib/aws-sdk-cognitoidentityprovider.rb +1 -1
- metadata +2 -2
@@ -90,6 +90,7 @@ module Aws::CognitoIdentityProvider
|
|
90
90
|
AttributeNameType = Shapes::StringShape.new(name: 'AttributeNameType')
|
91
91
|
AttributeType = Shapes::StructureShape.new(name: 'AttributeType')
|
92
92
|
AttributeValueType = Shapes::StringShape.new(name: 'AttributeValueType')
|
93
|
+
AttributesRequireVerificationBeforeUpdateType = Shapes::ListShape.new(name: 'AttributesRequireVerificationBeforeUpdateType')
|
93
94
|
AuthEventType = Shapes::StructureShape.new(name: 'AuthEventType')
|
94
95
|
AuthEventsType = Shapes::ListShape.new(name: 'AuthEventsType')
|
95
96
|
AuthFlowType = Shapes::StringShape.new(name: 'AuthFlowType')
|
@@ -430,6 +431,7 @@ module Aws::CognitoIdentityProvider
|
|
430
431
|
UpdateUserPoolDomainResponse = Shapes::StructureShape.new(name: 'UpdateUserPoolDomainResponse')
|
431
432
|
UpdateUserPoolRequest = Shapes::StructureShape.new(name: 'UpdateUserPoolRequest')
|
432
433
|
UpdateUserPoolResponse = Shapes::StructureShape.new(name: 'UpdateUserPoolResponse')
|
434
|
+
UserAttributeUpdateSettingsType = Shapes::StructureShape.new(name: 'UserAttributeUpdateSettingsType')
|
433
435
|
UserContextDataType = Shapes::StructureShape.new(name: 'UserContextDataType')
|
434
436
|
UserFilterType = Shapes::StringShape.new(name: 'UserFilterType')
|
435
437
|
UserImportInProgressException = Shapes::StructureShape.new(name: 'UserImportInProgressException')
|
@@ -752,6 +754,8 @@ module Aws::CognitoIdentityProvider
|
|
752
754
|
AttributeType.add_member(:value, Shapes::ShapeRef.new(shape: AttributeValueType, location_name: "Value"))
|
753
755
|
AttributeType.struct_class = Types::AttributeType
|
754
756
|
|
757
|
+
AttributesRequireVerificationBeforeUpdateType.member = Shapes::ShapeRef.new(shape: VerifiedAttributeType)
|
758
|
+
|
755
759
|
AuthEventType.add_member(:event_id, Shapes::ShapeRef.new(shape: StringType, location_name: "EventId"))
|
756
760
|
AuthEventType.add_member(:event_type, Shapes::ShapeRef.new(shape: EventType, location_name: "EventType"))
|
757
761
|
AuthEventType.add_member(:creation_date, Shapes::ShapeRef.new(shape: DateType, location_name: "CreationDate"))
|
@@ -949,6 +953,7 @@ module Aws::CognitoIdentityProvider
|
|
949
953
|
CreateUserPoolRequest.add_member(:verification_message_template, Shapes::ShapeRef.new(shape: VerificationMessageTemplateType, location_name: "VerificationMessageTemplate"))
|
950
954
|
CreateUserPoolRequest.add_member(:sms_authentication_message, Shapes::ShapeRef.new(shape: SmsVerificationMessageType, location_name: "SmsAuthenticationMessage"))
|
951
955
|
CreateUserPoolRequest.add_member(:mfa_configuration, Shapes::ShapeRef.new(shape: UserPoolMfaType, location_name: "MfaConfiguration"))
|
956
|
+
CreateUserPoolRequest.add_member(:user_attribute_update_settings, Shapes::ShapeRef.new(shape: UserAttributeUpdateSettingsType, location_name: "UserAttributeUpdateSettings"))
|
952
957
|
CreateUserPoolRequest.add_member(:device_configuration, Shapes::ShapeRef.new(shape: DeviceConfigurationType, location_name: "DeviceConfiguration"))
|
953
958
|
CreateUserPoolRequest.add_member(:email_configuration, Shapes::ShapeRef.new(shape: EmailConfigurationType, location_name: "EmailConfiguration"))
|
954
959
|
CreateUserPoolRequest.add_member(:sms_configuration, Shapes::ShapeRef.new(shape: SmsConfigurationType, location_name: "SmsConfiguration"))
|
@@ -1799,6 +1804,7 @@ module Aws::CognitoIdentityProvider
|
|
1799
1804
|
UpdateUserPoolRequest.add_member(:email_verification_subject, Shapes::ShapeRef.new(shape: EmailVerificationSubjectType, location_name: "EmailVerificationSubject"))
|
1800
1805
|
UpdateUserPoolRequest.add_member(:verification_message_template, Shapes::ShapeRef.new(shape: VerificationMessageTemplateType, location_name: "VerificationMessageTemplate"))
|
1801
1806
|
UpdateUserPoolRequest.add_member(:sms_authentication_message, Shapes::ShapeRef.new(shape: SmsVerificationMessageType, location_name: "SmsAuthenticationMessage"))
|
1807
|
+
UpdateUserPoolRequest.add_member(:user_attribute_update_settings, Shapes::ShapeRef.new(shape: UserAttributeUpdateSettingsType, location_name: "UserAttributeUpdateSettings"))
|
1802
1808
|
UpdateUserPoolRequest.add_member(:mfa_configuration, Shapes::ShapeRef.new(shape: UserPoolMfaType, location_name: "MfaConfiguration"))
|
1803
1809
|
UpdateUserPoolRequest.add_member(:device_configuration, Shapes::ShapeRef.new(shape: DeviceConfigurationType, location_name: "DeviceConfiguration"))
|
1804
1810
|
UpdateUserPoolRequest.add_member(:email_configuration, Shapes::ShapeRef.new(shape: EmailConfigurationType, location_name: "EmailConfiguration"))
|
@@ -1811,6 +1817,9 @@ module Aws::CognitoIdentityProvider
|
|
1811
1817
|
|
1812
1818
|
UpdateUserPoolResponse.struct_class = Types::UpdateUserPoolResponse
|
1813
1819
|
|
1820
|
+
UserAttributeUpdateSettingsType.add_member(:attributes_require_verification_before_update, Shapes::ShapeRef.new(shape: AttributesRequireVerificationBeforeUpdateType, location_name: "AttributesRequireVerificationBeforeUpdate"))
|
1821
|
+
UserAttributeUpdateSettingsType.struct_class = Types::UserAttributeUpdateSettingsType
|
1822
|
+
|
1814
1823
|
UserContextDataType.add_member(:encoded_data, Shapes::ShapeRef.new(shape: StringType, location_name: "EncodedData"))
|
1815
1824
|
UserContextDataType.struct_class = Types::UserContextDataType
|
1816
1825
|
|
@@ -1920,6 +1929,7 @@ module Aws::CognitoIdentityProvider
|
|
1920
1929
|
UserPoolType.add_member(:email_verification_subject, Shapes::ShapeRef.new(shape: EmailVerificationSubjectType, location_name: "EmailVerificationSubject"))
|
1921
1930
|
UserPoolType.add_member(:verification_message_template, Shapes::ShapeRef.new(shape: VerificationMessageTemplateType, location_name: "VerificationMessageTemplate"))
|
1922
1931
|
UserPoolType.add_member(:sms_authentication_message, Shapes::ShapeRef.new(shape: SmsVerificationMessageType, location_name: "SmsAuthenticationMessage"))
|
1932
|
+
UserPoolType.add_member(:user_attribute_update_settings, Shapes::ShapeRef.new(shape: UserAttributeUpdateSettingsType, location_name: "UserAttributeUpdateSettings"))
|
1923
1933
|
UserPoolType.add_member(:mfa_configuration, Shapes::ShapeRef.new(shape: UserPoolMfaType, location_name: "MfaConfiguration"))
|
1924
1934
|
UserPoolType.add_member(:device_configuration, Shapes::ShapeRef.new(shape: DeviceConfigurationType, location_name: "DeviceConfiguration"))
|
1925
1935
|
UserPoolType.add_member(:estimated_number_of_users, Shapes::ShapeRef.new(shape: IntegerType, location_name: "EstimatedNumberOfUsers"))
|
@@ -3653,6 +3663,7 @@ module Aws::CognitoIdentityProvider
|
|
3653
3663
|
o.errors << Shapes::ShapeRef.new(shape: UserNotFoundException)
|
3654
3664
|
o.errors << Shapes::ShapeRef.new(shape: UserNotConfirmedException)
|
3655
3665
|
o.errors << Shapes::ShapeRef.new(shape: InternalErrorException)
|
3666
|
+
o.errors << Shapes::ShapeRef.new(shape: AliasExistsException)
|
3656
3667
|
end)
|
3657
3668
|
end
|
3658
3669
|
|