Interface HttpAuthorizerAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
HttpAuthorizerAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:56.387Z") @Stability(Stable) public interface HttpAuthorizerAttributes extends software.amazon.jsii.JsiiSerializable
Reference to an http authorizer.

Example:

 import software.amazon.awscdk.services.apigatewayv2.HttpAuthorizer;
 import software.amazon.awscdk.Fn;
 String authorizerId = Fn.importValue("authorizerId");
 String authorizerType = Fn.importValue("authorizerType");
 IHttpRouteAuthorizer authorizer = HttpAuthorizer.fromHttpAuthorizerAttributes(this, "HttpAuthorizer", HttpAuthorizerAttributes.builder()
         .authorizerId(authorizerId)
         .authorizerType(authorizerType)
         .build());