Class: Aws::AmplifyBackend::Types::UpdateBackendAuthVerificationMessageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::UpdateBackendAuthVerificationMessageConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplifybackend/types.rb
Overview
Updates the configuration of the email or SMS message for the auth resource configured for your Amplify project.
Constant Summary collapse
- SENSITIVE =
[:email_settings, :sms_settings]
Instance Attribute Summary collapse
-
#delivery_method ⇒ String
The type of verification message to send.
-
#email_settings ⇒ Types::EmailSettings
The settings for the email message.
-
#sms_settings ⇒ Types::SmsSettings
The settings for the SMS message.
Instance Attribute Details
#delivery_method ⇒ String
The type of verification message to send.
3374 3375 3376 3377 3378 3379 3380 |
# File 'lib/aws-sdk-amplifybackend/types.rb', line 3374 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [:email_settings, :sms_settings] include Aws::Structure end |
#email_settings ⇒ Types::EmailSettings
The settings for the email message.
3374 3375 3376 3377 3378 3379 3380 |
# File 'lib/aws-sdk-amplifybackend/types.rb', line 3374 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [:email_settings, :sms_settings] include Aws::Structure end |
#sms_settings ⇒ Types::SmsSettings
The settings for the SMS message.
3374 3375 3376 3377 3378 3379 3380 |
# File 'lib/aws-sdk-amplifybackend/types.rb', line 3374 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [:email_settings, :sms_settings] include Aws::Structure end |