EventTargetHttpTargetArgs

data class EventTargetHttpTargetArgs(val headerParameters: Output<Map<String, String>>? = null, val pathParameterValues: Output<List<String>>? = null, val queryStringParameters: Output<Map<String, String>>? = null) : ConvertibleToJava<EventTargetHttpTargetArgs>

Constructors

Link copied to clipboard
constructor(headerParameters: Output<Map<String, String>>? = null, pathParameterValues: Output<List<String>>? = null, queryStringParameters: Output<Map<String, String>>? = null)

Properties

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

Enables you to specify HTTP headers to add to the request.

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

The list of values that correspond sequentially to any path variables in your endpoint ARN (for example arn:aws:execute-api:us-east-1:123456:myapi/*/POST/pets/*).

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

Represents keys/values of query string parameters that are appended to the invoked endpoint. //

Functions

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