AuthorizerReference
- class aws_cdk.aws_iot.AuthorizerReference(*, authorizer_arn, authorizer_name)
Bases:
object
A reference to a Authorizer resource.
- Parameters:
authorizer_arn (
str
) – The ARN of the Authorizer resource.authorizer_name (
str
) – The AuthorizerName of the Authorizer resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot authorizer_reference = iot.AuthorizerReference( authorizer_arn="authorizerArn", authorizer_name="authorizerName" )
Attributes
- authorizer_arn
The ARN of the Authorizer resource.
- authorizer_name
The AuthorizerName of the Authorizer resource.