Class: Aws::AmplifyBackend::Types::UpdateBackendAuthVerificationMessageConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::UpdateBackendAuthVerificationMessageConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass UpdateBackendAuthVerificationMessageConfig data as a hash:
{
delivery_method: "EMAIL", # required, accepts EMAIL, SMS
email_settings: {
email_message: "__string",
email_subject: "__string",
},
sms_settings: {
sms_message: "__string",
},
}
Updates the configuration of the email or SMS message for the auth resource configured for your Amplify project.
Constant Summary collapse
- SENSITIVE =
[]
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.
4546 4547 4548 4549 4550 4551 4552 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4546 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |
#email_settings ⇒ Types::EmailSettings
The settings for the email message.
4546 4547 4548 4549 4550 4551 4552 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4546 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |
#sms_settings ⇒ Types::SmsSettings
The settings for the SMS message.
4546 4547 4548 4549 4550 4551 4552 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4546 class UpdateBackendAuthVerificationMessageConfig < Struct.new( :delivery_method, :email_settings, :sms_settings) SENSITIVE = [] include Aws::Structure end |