ErrorDetailArgs

data class ErrorDetailArgs(val errorCode: Output<String>? = null, val errorData: Output<List<Any>>? = null, val errorMessage: Output<String>? = null) : ConvertibleToJava<ErrorDetailArgs>

Definition of ErrorDetail

Constructors

Link copied to clipboard
constructor(errorCode: Output<String>? = null, errorData: Output<List<Any>>? = null, errorMessage: Output<String>? = null)

Properties

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

The name or code associated with the error.

Link copied to clipboard
val errorData: Output<List<Any>>? = null

A list of key value pairs that provides contextual information about why an error occured.

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

A message that describes the error.

Functions

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