UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

65 lines (64 loc) 2.5 kB
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); var resource_1 = require("../../resource"); var CloudWatchLogsLogGroup = /** @class */ (function () { function CloudWatchLogsLogGroup(properties) { Object.assign(this, properties); } return CloudWatchLogsLogGroup; }()); exports.CloudWatchLogsLogGroup = CloudWatchLogsLogGroup; var LogDestination = /** @class */ (function () { function LogDestination(properties) { Object.assign(this, properties); } return LogDestination; }()); exports.LogDestination = LogDestination; var TagsEntry = /** @class */ (function () { function TagsEntry(properties) { Object.assign(this, properties); } return TagsEntry; }()); exports.TagsEntry = TagsEntry; var TracingConfiguration = /** @class */ (function () { function TracingConfiguration(properties) { Object.assign(this, properties); } return TracingConfiguration; }()); exports.TracingConfiguration = TracingConfiguration; var LoggingConfiguration = /** @class */ (function () { function LoggingConfiguration(properties) { Object.assign(this, properties); } return LoggingConfiguration; }()); exports.LoggingConfiguration = LoggingConfiguration; var Inner_StateMachine = /** @class */ (function (_super) { __extends(Inner_StateMachine, _super); function Inner_StateMachine(properties) { return _super.call(this, "AWS::StepFunctions::StateMachine", properties) || this; } Inner_StateMachine.CloudWatchLogsLogGroup = CloudWatchLogsLogGroup; Inner_StateMachine.LogDestination = LogDestination; Inner_StateMachine.TagsEntry = TagsEntry; Inner_StateMachine.TracingConfiguration = TracingConfiguration; Inner_StateMachine.LoggingConfiguration = LoggingConfiguration; return Inner_StateMachine; }(resource_1.ResourceBase)); exports.default = Inner_StateMachine;