ErrorArgs

data class ErrorArgs(val code: Output<String>? = null, val message: Output<String>? = null) : ConvertibleToJava<ErrorArgs>

The error code compose of code and message.

Constructors

Link copied to clipboard
constructor(code: Output<String>? = null, message: Output<String>? = null)

Properties

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

The code of error.

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

The message of error.

Functions

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