Class: Aws::AmplifyBackend::Types::EmailSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::EmailSettings
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass EmailSettings data as a hash:
{
email_message: "__string",
email_subject: "__string",
}
The settings for the email message.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#email_message ⇒ String
The contents of the email message.
-
#email_subject ⇒ String
The contents of the subject line of the email message.
Instance Attribute Details
#email_message ⇒ String
The contents of the email message.
2306 2307 2308 2309 2310 2311 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 2306 class EmailSettings < Struct.new( :email_message, :email_subject) SENSITIVE = [] include Aws::Structure end |
#email_subject ⇒ String
The contents of the subject line of the email message.
2306 2307 2308 2309 2310 2311 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 2306 class EmailSettings < Struct.new( :email_message, :email_subject) SENSITIVE = [] include Aws::Structure end |