Class: Aws::CognitoIdentityProvider::Types::NotifyEmailType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::NotifyEmailType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
The template for email messages that threat protection sends to a user when your threat protection automated response has a Notify action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#html_body ⇒ String
The body of an email notification formatted in HTML.
-
#subject ⇒ String
The subject of the threat protection email notification.
-
#text_body ⇒ String
The body of an email notification formatted in plaintext.
Instance Attribute Details
#html_body ⇒ String
The body of an email notification formatted in HTML. Choose an
HtmlBody
or a TextBody
to send an HTML-formatted or plaintext
message, respectively.
8438 8439 8440 8441 8442 8443 8444 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438 class NotifyEmailType < Struct.new( :subject, :html_body, :text_body) SENSITIVE = [] include Aws::Structure end |
#subject ⇒ String
The subject of the threat protection email notification.
8438 8439 8440 8441 8442 8443 8444 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438 class NotifyEmailType < Struct.new( :subject, :html_body, :text_body) SENSITIVE = [] include Aws::Structure end |
#text_body ⇒ String
The body of an email notification formatted in plaintext. Choose an
HtmlBody
or a TextBody
to send an HTML-formatted or plaintext
message, respectively.
8438 8439 8440 8441 8442 8443 8444 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438 class NotifyEmailType < Struct.new( :subject, :html_body, :text_body) SENSITIVE = [] include Aws::Structure end |