Class: Aws::AmplifyBackend::Types::CreateBackendAuthForgotPasswordConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::CreateBackendAuthForgotPasswordConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
When making an API call, you may pass CreateBackendAuthForgotPasswordConfig data as a hash:
{
delivery_method: "EMAIL", # required, accepts EMAIL, SMS
email_settings: {
email_message: "__string",
email_subject: "__string",
},
sms_settings: {
sms_message: "__string",
},
}
(DEPRECATED) Describes the forgot password policy for authenticating into the Amplify app.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_method ⇒ String
(DEPRECATED) Describes which mode to use (either SMS or email) to deliver messages to app users who want to recover their password.
-
#email_settings ⇒ Types::EmailSettings
(DEPRECATED) The configuration for the email sent when an app user forgets their password.
-
#sms_settings ⇒ Types::SmsSettings
(DEPRECATED) The configuration for the SMS message sent when an app user forgets their password.
Instance Attribute Details
#delivery_method ⇒ String
(DEPRECATED) Describes which mode to use (either SMS or email) to deliver messages to app users who want to recover their password.
892 893 894 895 896 897 898 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 892 class CreateBackendAuthForgotPasswordConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |
#email_settings ⇒ Types::EmailSettings
(DEPRECATED) The configuration for the email sent when an app user forgets their password.
892 893 894 895 896 897 898 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 892 class CreateBackendAuthForgotPasswordConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |
#sms_settings ⇒ Types::SmsSettings
(DEPRECATED) The configuration for the SMS message sent when an app user forgets their password.
892 893 894 895 896 897 898 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 892 class CreateBackendAuthForgotPasswordConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |