Class: Aws::CognitoIdentityProvider::Types::NotifyEmailType

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#html_bodyString

The body of an email notification formatted in HTML. Choose an ‘HtmlBody` or a `TextBody` to send an HTML-formatted or plaintext message, respectively.

Returns:

  • (String)


8438
8439
8440
8441
8442
8443
8444
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438

class NotifyEmailType < Struct.new(
  :subject,
  :html_body,
  :text_body)
  SENSITIVE = []
  include Aws::Structure
end

#subjectString

The subject of the threat protection email notification.

Returns:

  • (String)


8438
8439
8440
8441
8442
8443
8444
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438

class NotifyEmailType < Struct.new(
  :subject,
  :html_body,
  :text_body)
  SENSITIVE = []
  include Aws::Structure
end

#text_bodyString

The body of an email notification formatted in plaintext. Choose an ‘HtmlBody` or a `TextBody` to send an HTML-formatted or plaintext message, respectively.

Returns:

  • (String)


8438
8439
8440
8441
8442
8443
8444
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 8438

class NotifyEmailType < Struct.new(
  :subject,
  :html_body,
  :text_body)
  SENSITIVE = []
  include Aws::Structure
end