EventTargetHttpTarget

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

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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

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