@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:46:59.823Z") @Stability(value=Experimental) public interface HttpRouteIntegrationBindOptions 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.core.*;
import software.amazon.awscdk.services.apigatewayv2.*;
Construct construct;
HttpRoute httpRoute;
HttpRouteIntegrationBindOptions httpRouteIntegrationBindOptions = HttpRouteIntegrationBindOptions.builder()
.route(httpRoute)
.scope(construct)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpRouteIntegrationBindOptions.Builder
A builder for
HttpRouteIntegrationBindOptions |
static class |
HttpRouteIntegrationBindOptions.Jsii$Proxy
An implementation for
HttpRouteIntegrationBindOptions |
| Modifier and Type | Method and Description |
|---|---|
static HttpRouteIntegrationBindOptions.Builder |
builder() |
IHttpRoute |
getRoute()
(experimental) The route to which this is being bound.
|
Construct |
getScope()
(experimental) The current scope in which the bind is occurring.
|
@Stability(value=Experimental) @NotNull IHttpRoute getRoute()
@Stability(value=Experimental) @NotNull Construct getScope()
If the HttpRouteIntegration being bound creates additional constructs,
this will be used as their parent scope.
@Stability(value=Experimental) static HttpRouteIntegrationBindOptions.Builder builder()
Copyright © 2022. All rights reserved.