JsonMapperDestinationFieldArgs

data class JsonMapperDestinationFieldArgs(val destination: Output<Either<String, JsonMapperElement>>? = null, val fieldName: Output<String>? = null) : ConvertibleToJava<JsonMapperDestinationFieldArgs>

JsonArrayMapper destination field used to describe the field to which the parsed output will be written.

Constructors

Link copied to clipboard
constructor(destination: Output<Either<String, JsonMapperElement>>? = null, fieldName: Output<String>? = null)

Properties

Link copied to clipboard
val destination: Output<Either<String, JsonMapperElement>>? = null

Define the destination's element. The element is the body or the attributes of the message, to which the json array mapper will write the output map.

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

Define a destination field name under the given element. Leaving this empty, means the root of the element. In case element=attributes and fieldName is empty, the object's attributes themselves will contain the key value output pairs.

Functions

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