Interface HttpRouteIntegrationConfig

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
HttpRouteIntegrationConfig.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.058Z") @Stability(Stable) public interface HttpRouteIntegrationConfig extends software.amazon.jsii.JsiiSerializable
Config returned back as a result of the bind.

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();