@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:46:59.841Z") @Stability(value=Experimental) public interface HttpRouteIntegrationConfig 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.*;
IntegrationCredentials integrationCredentials;
ParameterMapping parameterMapping;
PayloadFormatVersion payloadFormatVersion;
HttpRouteIntegrationConfig httpRouteIntegrationConfig = HttpRouteIntegrationConfig.builder()
.payloadFormatVersion(payloadFormatVersion)
.type(HttpIntegrationType.HTTP_PROXY)
// the properties below are optional
.connectionId("connectionId")
.connectionType(HttpConnectionType.VPC_LINK)
.credentials(integrationCredentials)
.method(HttpMethod.ANY)
.parameterMapping(parameterMapping)
.secureServerName("secureServerName")
.subtype(HttpIntegrationSubtype.EVENTBRIDGE_PUT_EVENTS)
.uri("uri")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpRouteIntegrationConfig.Builder
A builder for
HttpRouteIntegrationConfig |
static class |
HttpRouteIntegrationConfig.Jsii$Proxy
An implementation for
HttpRouteIntegrationConfig |
| Modifier and Type | Method and Description |
|---|---|
static HttpRouteIntegrationConfig.Builder |
builder() |
default String |
getConnectionId()
(experimental) The ID of the VPC link for a private integration.
|
default HttpConnectionType |
getConnectionType()
(experimental) The type of the network connection to the integration endpoint.
|
default IntegrationCredentials |
getCredentials()
(experimental) The credentials with which to invoke the integration.
|
default HttpMethod |
getMethod()
(experimental) The HTTP method that must be used to invoke the underlying proxy.
|
default ParameterMapping |
getParameterMapping()
(experimental) Specifies how to transform HTTP requests before sending them to the backend.
|
PayloadFormatVersion |
getPayloadFormatVersion()
(experimental) Payload format version in the case of lambda proxy integration.
|
default String |
getSecureServerName()
(experimental) Specifies the server name to verified by HTTPS when calling the backend integration.
|
default HttpIntegrationSubtype |
getSubtype()
(experimental) Integration subtype.
|
HttpIntegrationType |
getType()
(experimental) Integration type.
|
default String |
getUri()
(experimental) Integration URI.
|
@Stability(value=Experimental) @NotNull PayloadFormatVersion getPayloadFormatVersion()
Default: - undefined
@Stability(value=Experimental) @NotNull HttpIntegrationType getType()
@Stability(value=Experimental) @Nullable default String getConnectionId()
Supported only for HTTP APIs.
Default: - undefined
@Stability(value=Experimental) @Nullable default HttpConnectionType getConnectionType()
Default: HttpConnectionType.INTERNET
@Stability(value=Experimental) @Nullable default IntegrationCredentials getCredentials()
Default: - no credentials, use resource-based permissions on supported AWS services
@Stability(value=Experimental) @Nullable default HttpMethod getMethod()
Required for HttpIntegrationType.HTTP_PROXY
Default: - undefined
@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 HttpIntegrationSubtype getSubtype()
Default: - none, required if no `integrationUri` is defined.
@Stability(value=Experimental) @Nullable default String getUri()
Default: - none, required if no `integrationSubtype` is defined.
@Stability(value=Experimental) static HttpRouteIntegrationConfig.Builder builder()
HttpRouteIntegrationConfig.Builder of HttpRouteIntegrationConfigCopyright © 2022. All rights reserved.