interface AuthorizerReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Apigatewayv2.AuthorizerReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigatewayv2#AuthorizerReference | 
  Java | software.amazon.awscdk.services.apigatewayv2.AuthorizerReference | 
  Python | aws_cdk.aws_apigatewayv2.AuthorizerReference | 
  TypeScript  | aws-cdk-lib » aws_apigatewayv2 » AuthorizerReference | 
A reference to a Authorizer resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as apigatewayv2 } from 'aws-cdk-lib';
const authorizerReference: apigatewayv2.AuthorizerReference = {
  apiId: 'apiId',
  authorizerId: 'authorizerId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| api | string | The ApiId of the Authorizer resource. | 
| authorizer | string | The AuthorizerId of the Authorizer resource. | 
apiId
Type:
string
The ApiId of the Authorizer resource.
authorizerId
Type:
string
The AuthorizerId of the Authorizer resource.

 .NET
 Go
 Java
 Python
 TypeScript