Class: Aws::AmplifyBackend::Types::CreateBackendAuthVerificationMessageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::CreateBackendAuthVerificationMessageConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Creates an email or SMS verification 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.
1028 1029 1030 1031 1032 1033 1034 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 1028 class CreateBackendAuthVerificationMessageConfig < 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.
1028 1029 1030 1031 1032 1033 1034 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 1028 class CreateBackendAuthVerificationMessageConfig < 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.
1028 1029 1030 1031 1032 1033 1034 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 1028 class CreateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [:email_settings, :sms_settings] include Aws::Structure end |