UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

17 lines (16 loc) 663 B
"use strict"; // CloudFormation Resource AWS::ApiGateway::Authorizer Object.defineProperty(exports, "__esModule", { value: true }); exports.Authorizer_Type = void 0; const base_1 = require("../../base"); exports.Authorizer_Type = 'AWS::ApiGateway::Authorizer'; /** * Represents an authorization layer for methods. If enabled on a method, * API Gateway will activate the authorizer when a client calls the * method. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html} */ function Authorizer(props) { return new base_1.CfnResource(exports.Authorizer_Type, props); } exports.default = Authorizer;