Class HttpParameters
- Namespace
- Amazon.EventBridge.Model
- Assembly
- AWSSDK.EventBridge.dll
These are custom parameter to be used when the target is an API Gateway APIs or EventBridge ApiDestinations. In the latter case, these are merged with any InvocationParameters specified on the Connection, with any values from the Connection taking precedence.
public class HttpParameters
- Inheritance
-
HttpParameters
- Inherited Members
Constructors
HttpParameters()
public HttpParameters()
Properties
HeaderParameters
Gets and sets the property HeaderParameters.
The headers that need to be sent as part of request invoking the API Gateway API or EventBridge ApiDestination.
public Dictionary<string, string> HeaderParameters { get; set; }
Property Value
PathParameterValues
Gets and sets the property PathParameterValues.
The path parameter values to be used to populate API Gateway API or EventBridge ApiDestination path wildcards ("*").
public List<string> PathParameterValues { get; set; }
Property Value
QueryStringParameters
Gets and sets the property QueryStringParameters.
The query string keys/values that need to be sent as part of request invoking the API Gateway API or EventBridge ApiDestination.
public Dictionary<string, string> QueryStringParameters { get; set; }