FulfillmentGenericWebServiceArgs

data class FulfillmentGenericWebServiceArgs(val password: Output<String>? = null, val requestHeaders: Output<Map<String, String>>? = null, val uri: Output<String>, val username: Output<String>? = null) : ConvertibleToJava<FulfillmentGenericWebServiceArgs>

Constructors

Link copied to clipboard
constructor(password: Output<String>? = null, requestHeaders: Output<Map<String, String>>? = null, uri: Output<String>, username: Output<String>? = null)

Properties

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

The password for HTTP Basic authentication.

Link copied to clipboard
val requestHeaders: Output<Map<String, String>>? = null

The HTTP request headers to send together with fulfillment requests.

Link copied to clipboard
val uri: Output<String>

The fulfillment URI for receiving POST requests. It must use https protocol.

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

The user name for HTTP Basic authentication.

Functions

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