@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
81 lines (80 loc) • 2.72 kB
JavaScript
;
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 Schedule = /** @class */ (function () {
function Schedule(properties) {
Object.assign(this, properties);
}
return Schedule;
}());
exports.Schedule = Schedule;
var DynamoDBTarget = /** @class */ (function () {
function DynamoDBTarget(properties) {
Object.assign(this, properties);
}
return DynamoDBTarget;
}());
exports.DynamoDBTarget = DynamoDBTarget;
var SchemaChangePolicy = /** @class */ (function () {
function SchemaChangePolicy(properties) {
Object.assign(this, properties);
}
return SchemaChangePolicy;
}());
exports.SchemaChangePolicy = SchemaChangePolicy;
var Targets = /** @class */ (function () {
function Targets(properties) {
Object.assign(this, properties);
}
return Targets;
}());
exports.Targets = Targets;
var JdbcTarget = /** @class */ (function () {
function JdbcTarget(properties) {
Object.assign(this, properties);
}
return JdbcTarget;
}());
exports.JdbcTarget = JdbcTarget;
var S3Target = /** @class */ (function () {
function S3Target(properties) {
Object.assign(this, properties);
}
return S3Target;
}());
exports.S3Target = S3Target;
var CatalogTarget = /** @class */ (function () {
function CatalogTarget(properties) {
Object.assign(this, properties);
}
return CatalogTarget;
}());
exports.CatalogTarget = CatalogTarget;
var Inner_Crawler = /** @class */ (function (_super) {
__extends(Inner_Crawler, _super);
function Inner_Crawler(properties) {
return _super.call(this, "AWS::Glue::Crawler", properties) || this;
}
Inner_Crawler.Schedule = Schedule;
Inner_Crawler.DynamoDBTarget = DynamoDBTarget;
Inner_Crawler.SchemaChangePolicy = SchemaChangePolicy;
Inner_Crawler.Targets = Targets;
Inner_Crawler.JdbcTarget = JdbcTarget;
Inner_Crawler.S3Target = S3Target;
Inner_Crawler.CatalogTarget = CatalogTarget;
return Inner_Crawler;
}(resource_1.ResourceBase));
exports.default = Inner_Crawler;