UserInfoArgs

data class UserInfoArgs(val emailAddress: Output<String>? = null, val name: Output<String>? = null, val phoneNumber: Output<String>? = null) : ConvertibleToJava<UserInfoArgs>

Includes name, email and optionally, phone number. User Information can't be null.

Constructors

Link copied to clipboard
constructor(emailAddress: Output<String>? = null, name: Output<String>? = null, phoneNumber: Output<String>? = null)

Properties

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

Email of the user used by Datadog for contacting them if needed

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

Name of the user

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

Phone number of the user used by Datadog for contacting them if needed

Functions

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