Interface HttpRouteAuthorizerBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpRouteAuthorizerBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:09:58.077Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpRouteAuthorizerBindOptionsstatic final classAn 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
-