MailAddressArgs

data class MailAddressArgs(val accountName: Output<String>? = null, val password: Output<String>? = null, val replyAddress: Output<String>? = null, val sendtype: Output<String>? = null) : ConvertibleToJava<MailAddressArgs>

Provides a Direct Mail Mail Address resource. For information about Direct Mail Mail Address and how to use it, see What is Mail Address.

NOTE: Available since v1.134.0.

Import

Direct Mail Mail Address can be imported using the id, e.g.

$ pulumi import alicloud:directmail/mailAddress:MailAddress example <id>

Constructors

Link copied to clipboard
constructor(accountName: Output<String>? = null, password: Output<String>? = null, replyAddress: Output<String>? = null, sendtype: Output<String>? = null)

Properties

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

The sender address. The email address must be filled in the format of account@domain, and only lowercase letters or numbers can be used.

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

Account password. The password must be length 10-20 string, contains numbers, uppercase letters, lowercase letters at the same time.

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

Return address.

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

Account type. Valid values: batch, trigger.

Functions

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