typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 677 B
JavaScript
;
// CloudFormation Resource AWS::S3ObjectLambda::AccessPoint
Object.defineProperty(exports, "__esModule", { value: true });
exports.AccessPoint_Type = void 0;
const base_1 = require("../../base");
exports.AccessPoint_Type = 'AWS::S3ObjectLambda::AccessPoint';
/**
* The AWS::S3ObjectLambda::AccessPoint resource is an Amazon
* S3ObjectLambda resource type that you can use to add computation to S3
* actions {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.html}
*/
function AccessPoint(props) {
return new base_1.CfnResource(exports.AccessPoint_Type, props);
}
exports.default = AccessPoint;