@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-14T20:30:54.621Z") @Stability(value=Experimental) public interface HttpPrivateIntegrationOptions 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;
VpcLink vpcLink;
HttpPrivateIntegrationOptions httpPrivateIntegrationOptions = HttpPrivateIntegrationOptions.builder()
.method(HttpMethod.ANY)
.parameterMapping(parameterMapping)
.secureServerName("secureServerName")
.vpcLink(vpcLink)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpPrivateIntegrationOptions.Builder
A builder for
HttpPrivateIntegrationOptions |
static class |
HttpPrivateIntegrationOptions.Jsii$Proxy
An implementation for
HttpPrivateIntegrationOptions |
| Modifier and Type | Method and Description |
|---|---|
static HttpPrivateIntegrationOptions.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.
|
default String |
getSecureServerName()
(experimental) Specifies the server name to verified by HTTPS when calling the backend integration.
|
default IVpcLink |
getVpcLink()
(experimental) The vpc link to be used for the private integration.
|
@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) @Nullable default String getSecureServerName()
Default: undefined private integration traffic will use HTTP protocol
@Stability(value=Experimental) @Nullable default IVpcLink getVpcLink()
Default: - a new VpcLink is created
@Stability(value=Experimental) static HttpPrivateIntegrationOptions.Builder builder()
Copyright © 2022. All rights reserved.