Interface BatchHttpRouteOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AddRoutesOptions,HttpRouteProps
- All Known Implementing Classes:
AddRoutesOptions.Jsii$Proxy,BatchHttpRouteOptions.Jsii$Proxy,HttpRouteProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.134Z")
@Stability(Experimental)
public interface BatchHttpRouteOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options used when configuring multiple routes, at once.
The options here are the ones that would be configured for all being set up.
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.*;
HttpRouteIntegration httpRouteIntegration;
BatchHttpRouteOptions batchHttpRouteOptions = BatchHttpRouteOptions.builder()
.integration(httpRouteIntegration)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBatchHttpRouteOptionsstatic final classAn implementation forBatchHttpRouteOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) The integration to be configured on this route.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIntegration
(experimental) The integration to be configured on this route. -
builder
- Returns:
- a
BatchHttpRouteOptions.BuilderofBatchHttpRouteOptions
-