public static interface CfnRule.HttpParametersProperty
In the latter case, these are merged with any InvocationParameters specified on the Connection, with any values from the Connection taking precedence.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.events.*; HttpParametersProperty httpParametersProperty = HttpParametersProperty.builder() .headerParameters(Map.of( "headerParametersKey", "headerParameters")) .pathParameterValues(List.of("pathParameterValues")) .queryStringParameters(Map.of( "queryStringParametersKey", "queryStringParameters")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnRule.HttpParametersProperty.Builder
A builder for
CfnRule.HttpParametersProperty |
static class |
CfnRule.HttpParametersProperty.Jsii$Proxy
An implementation for
CfnRule.HttpParametersProperty |
Modifier and Type | Method and Description |
---|---|
static CfnRule.HttpParametersProperty.Builder |
builder() |
default java.lang.Object |
getHeaderParameters()
The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
|
default java.util.List<java.lang.String> |
getPathParameterValues()
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
|
default java.lang.Object |
getQueryStringParameters()
The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
|
default java.lang.Object getHeaderParameters()
default java.util.List<java.lang.String> getPathParameterValues()
default java.lang.Object getQueryStringParameters()
static CfnRule.HttpParametersProperty.Builder builder()