package awscdkapigatewayv2alpha import ( "github.com/aws/constructs-go/constructs/v10" ) // 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 apigatewayv2_alpha "github.com/aws/aws-cdk-go/awscdkapigatewayv2alpha" // import constructs "github.com/aws/constructs-go/constructs" // // var construct construct // var webSocketRoute webSocketRoute // // webSocketRouteAuthorizerBindOptions := &WebSocketRouteAuthorizerBindOptions{ // Route: webSocketRoute, // Scope: construct, // } // // Experimental. type WebSocketRouteAuthorizerBindOptions struct { // The route to which the authorizer is being bound. // Experimental. Route IWebSocketRoute `field:"required" json:"route" yaml:"route"` // The scope for any constructs created as part of the bind. // Experimental. Scope constructs.Construct `field:"required" json:"scope" yaml:"scope"` }