NotificationPropertiesArgs

data class NotificationPropertiesArgs(val language: Output<String>? = null, val message: Output<String>? = null, val regionalFormat: Output<String>? = null, val subject: Output<String>, val to: Output<List<String>>) : ConvertibleToJava<NotificationPropertiesArgs>

The properties of the scheduled action notification.

Constructors

Link copied to clipboard
constructor(language: Output<String>? = null, message: Output<String>? = null, regionalFormat: Output<String>? = null, subject: Output<String>, to: Output<List<String>>)

Properties

Link copied to clipboard
val language: Output<String>? = null

Locale of the email.

Link copied to clipboard
val message: Output<String>? = null

Optional message to be added in the email. Length is limited to 250 characters.

Link copied to clipboard
val regionalFormat: Output<String>? = null

Regional format used for formatting date/time and currency values in the email.

Link copied to clipboard
val subject: Output<String>

Subject of the email. Length is limited to 70 characters.

Link copied to clipboard
val to: Output<List<String>>

Array of email addresses.

Functions

Link copied to clipboard
open override fun toJava(): NotificationPropertiesArgs