Interface IHttpRouteAuthorizerBindOptions
Input to the bind() operation, that binds an authorizer to a route.
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IHttpRouteAuthorizerBindOptions
Syntax (vb)
Public Interface IHttpRouteAuthorizerBindOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Apigatewayv2;
using Constructs;
Construct construct;
HttpRoute httpRoute;
var httpRouteAuthorizerBindOptions = new HttpRouteAuthorizerBindOptions {
Route = httpRoute,
Scope = construct
};
Synopsis
Properties
Route | The route to which the authorizer is being bound. |
Scope | The scope for any constructs created as part of the bind. |
Properties
Route
The route to which the authorizer is being bound.
IHttpRoute Route { get; }
Property Value
Scope
The scope for any constructs created as part of the bind.
Construct Scope { get; }
Property Value
Constructs.Construct