Interface WebSocketRouteAuthorizerBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WebSocketRouteAuthorizerBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:09:58.134Z")
@Stability(Stable)
public interface WebSocketRouteAuthorizerBindOptions
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;
WebSocketRoute webSocketRoute;
WebSocketRouteAuthorizerBindOptions webSocketRouteAuthorizerBindOptions = WebSocketRouteAuthorizerBindOptions.builder()
.route(webSocketRoute)
.scope(construct)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forWebSocketRouteAuthorizerBindOptionsstatic final classAn implementation forWebSocketRouteAuthorizerBindOptions -
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
-