UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

17 lines (16 loc) 675 B
"use strict"; // CloudFormation Resource AWS::CloudTrail::Trail Object.defineProperty(exports, "__esModule", { value: true }); exports.Trail_Type = void 0; const base_1 = require("../../base"); exports.Trail_Type = 'AWS::CloudTrail::Trail'; /** * Creates a trail that specifies the settings for delivery of log data * to an Amazon S3 bucket. A maximum of five trails can exist in a * region, irrespective of the region in which they were created. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html} */ function Trail(props) { return new base_1.CfnResource(exports.Trail_Type, props); } exports.default = Trail;