interface AuthorizerReference
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IoT.AuthorizerReference | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#AuthorizerReference | 
  Java | software.amazon.awscdk.services.iot.AuthorizerReference | 
  Python | aws_cdk.aws_iot.AuthorizerReference | 
  TypeScript  | aws-cdk-lib » aws_iot » 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_iot as iot } from 'aws-cdk-lib';
const authorizerReference: iot.AuthorizerReference = {
  authorizerArn: 'authorizerArn',
  authorizerName: 'authorizerName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| authorizer | string | The ARN of the Authorizer resource. | 
| authorizer | string | The AuthorizerName of the Authorizer resource. | 
authorizerArn
Type:
string
The ARN of the Authorizer resource.
authorizerName
Type:
string
The AuthorizerName of the Authorizer resource.

 .NET
 Go
 Java
 Python
 TypeScript