Interface HttpRouteAuthorizerBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpRouteAuthorizerBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-09-11T18:01:10.753Z")
@Stability(Stable)
public interface HttpRouteAuthorizerBindOptions
extends software.amazon.jsii.JsiiSerializable
Input to the bind() operation, that binds an authorizer to a route.
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.constructs.*; Construct construct; HttpRoute httpRoute; HttpRouteAuthorizerBindOptions httpRouteAuthorizerBindOptions = HttpRouteAuthorizerBindOptions.builder() .route(httpRoute) .scope(construct) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHttpRouteAuthorizerBindOptions
static final class
An implementation forHttpRouteAuthorizerBindOptions
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRoute
The route to which the authorizer is being bound. -
getScope
@Stability(Stable) @NotNull software.constructs.Construct getScope()The scope for any constructs created as part of the bind. -
builder
-