Class: Aws::AmplifyBackend::Types::SmsSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::SmsSettings
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass SmsSettings data as a hash:
{
sms_message: "__string",
}
The settings for the SMS message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sms_message ⇒ String
The contents of the SMS message.
Instance Attribute Details
#sms_message ⇒ String
The contents of the SMS message.
3764 3765 3766 3767 3768 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 3764 class SmsSettings < Struct.new( :sms_message) SENSITIVE = [] include Aws::Structure end |