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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cognitoidentityprovider/types.rb

Overview

Note:

When making an API call, you may pass NotifyEmailType data as a hash:

{
  subject: "EmailNotificationSubjectType", # required
  html_body: "EmailNotificationBodyType",
  text_body: "EmailNotificationBodyType",
}

The notify email type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#html_bodyString

The email HTML body.

Returns:

  • (String)


7268
7269
7270
7271
7272
7273
7274
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7268

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

#subjectString

The email subject.

Returns:

  • (String)


7268
7269
7270
7271
7272
7273
7274
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7268

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

#text_bodyString

The email text body.

Returns:

  • (String)


7268
7269
7270
7271
7272
7273
7274
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 7268

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