requestParameters

@JvmName(name = "pgmqerbnieqfnhpr")
suspend fun requestParameters(value: Output<Map<String, Boolean>>)
@JvmName(name = "bdmnufqcumxyukpw")
suspend fun requestParameters(value: Map<String, Boolean>?)

Parameters

value

Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.


@JvmName(name = "wrbjgctjivwbduxx")
fun requestParameters(vararg values: Pair<String, Boolean>)

Parameters

values

Map of request parameters (from the path, query string and headers) that should be passed to the integration. The boolean value indicates whether the parameter is required (true) or optional (false). For example: request_parameters = {"method.request.header.X-Some-Header" = true "method.request.querystring.some-query-param" = true} would define that the header X-Some-Header and the query string some-query-param must be provided in the request.