ContactArgs

data class ContactArgs(val addressMailing: Output<AddressArgs>? = null, val email: Output<String>, val fax: Output<String>? = null, val jobTitle: Output<String>? = null, val nameFirst: Output<String>, val nameLast: Output<String>, val nameMiddle: Output<String>? = null, val organization: Output<String>? = null, val phone: Output<String>) : ConvertibleToJava<ContactArgs>

Contact information for domain registration. If 'Domain Privacy' option is not selected then the contact information is made publicly available through the Whois directories as per ICANN requirements.

Constructors

Link copied to clipboard
constructor(addressMailing: Output<AddressArgs>? = null, email: Output<String>, fax: Output<String>? = null, jobTitle: Output<String>? = null, nameFirst: Output<String>, nameLast: Output<String>, nameMiddle: Output<String>? = null, organization: Output<String>? = null, phone: Output<String>)

Properties

Link copied to clipboard
val addressMailing: Output<AddressArgs>? = null

Mailing address.

Link copied to clipboard
val email: Output<String>

Email address.

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

Fax number.

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

Job title.

Link copied to clipboard
val nameFirst: Output<String>

First name.

Link copied to clipboard
val nameLast: Output<String>

Last name.

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

Middle name.

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

Organization contact belongs to.

Link copied to clipboard
val phone: Output<String>

Phone number.

Functions

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