Interface WebSocketRouteAuthorizerBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WebSocketRouteAuthorizerBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:02.844Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forWebSocketRouteAuthorizerBindOptions
static final class
An 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
-