@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-17T17:31:19.679Z") @Stability(value=Experimental) public interface HttpUrlIntegrationProps extends software.amazon.jsii.JsiiSerializable
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.apigatewayv2.*;
import software.amazon.awscdk.services.apigatewayv2.integrations.*;
ParameterMapping parameterMapping;
HttpUrlIntegrationProps httpUrlIntegrationProps = HttpUrlIntegrationProps.builder()
.method(HttpMethod.ANY)
.parameterMapping(parameterMapping)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpUrlIntegrationProps.Builder
A builder for
HttpUrlIntegrationProps |
static class |
HttpUrlIntegrationProps.Jsii$Proxy
An implementation for
HttpUrlIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static HttpUrlIntegrationProps.Builder |
builder() |
default HttpMethod |
getMethod()
(experimental) The HTTP method that must be used to invoke the underlying HTTP proxy.
|
default ParameterMapping |
getParameterMapping()
(experimental) Specifies how to transform HTTP requests before sending them to the backend.
|
@Stability(value=Experimental) @Nullable default HttpMethod getMethod()
Default: HttpMethod.ANY
@Stability(value=Experimental) @Nullable default ParameterMapping getParameterMapping()
Default: undefined requests are sent to the backend unmodified
@Stability(value=Experimental) static HttpUrlIntegrationProps.Builder builder()
HttpUrlIntegrationProps.Builder of HttpUrlIntegrationPropsCopyright © 2022. All rights reserved.