interface HttpRouteAuthorizerConfig
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.APIGatewayv2.HttpRouteAuthorizerConfig | 
  Java | software.amazon.awscdk.services.apigatewayv2.HttpRouteAuthorizerConfig | 
  Python | aws_cdk.aws_apigatewayv2.HttpRouteAuthorizerConfig | 
  TypeScript (source) | @aws-cdk/aws-apigatewayv2 » HttpRouteAuthorizerConfig | 
Obtainable from
Http.bind(), Http.bind(), Http.bind(), Http.bind(), Http.bind()
Results of binding an authorizer to an http route.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigatewayv2 from '@aws-cdk/aws-apigatewayv2';
const httpRouteAuthorizerConfig: apigatewayv2.HttpRouteAuthorizerConfig = {
  authorizationType: 'authorizationType',
  // the properties below are optional
  authorizationScopes: ['authorizationScopes'],
  authorizerId: 'authorizerId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| authorization | string | The type of authorization. | 
| authorization | string[] | The list of OIDC scopes to include in the authorization. | 
| authorizer | string | The authorizer id. | 
authorizationType
Type:
string
The type of authorization.
Possible values are:
- AWS_IAM - IAM Authorizer
 - JWT - JSON Web Token Authorizer
 - CUSTOM - Lambda Authorizer
 - NONE - No Authorization
 
authorizationScopes?
Type:
string[]
(optional, default: no authorization scopes)
The list of OIDC scopes to include in the authorization.
authorizerId?
Type:
string
(optional, default: No authorizer id (useful for AWS_IAM route authorizer))
The authorizer id.

 .NET
 Java
 Python
 TypeScript (