InputMappingArgs

data class InputMappingArgs(val fieldName: Output<String>? = null, val location: Output<InputMappingLocation>? = null, val methodMatch: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<InputMappingArgs>

InputMapping creates a 'virtual' property that will be injected into the properties before sending the request to the underlying API.

Constructors

Link copied to clipboard
fun InputMappingArgs(fieldName: Output<String>? = null, location: Output<InputMappingLocation>? = null, methodMatch: Output<String>? = null, value: Output<String>? = null)

Functions

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

Properties

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

The name of the field that is going to be injected.

Link copied to clipboard
val location: Output<InputMappingLocation>? = null

The location where this mapping applies.

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

Regex to evaluate on method to decide if input applies.

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

A jsonPath expression to select an element.