@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
57 lines (56 loc) • 2.14 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 SyncConfig = /** @class */ (function () {
function SyncConfig(properties) {
Object.assign(this, properties);
}
return SyncConfig;
}());
exports.SyncConfig = SyncConfig;
var LambdaConflictHandlerConfig = /** @class */ (function () {
function LambdaConflictHandlerConfig(properties) {
Object.assign(this, properties);
}
return LambdaConflictHandlerConfig;
}());
exports.LambdaConflictHandlerConfig = LambdaConflictHandlerConfig;
var PipelineConfig = /** @class */ (function () {
function PipelineConfig(properties) {
Object.assign(this, properties);
}
return PipelineConfig;
}());
exports.PipelineConfig = PipelineConfig;
var CachingConfig = /** @class */ (function () {
function CachingConfig(properties) {
Object.assign(this, properties);
}
return CachingConfig;
}());
exports.CachingConfig = CachingConfig;
var Inner_Resolver = /** @class */ (function (_super) {
__extends(Inner_Resolver, _super);
function Inner_Resolver(properties) {
return _super.call(this, "AWS::AppSync::Resolver", properties) || this;
}
Inner_Resolver.SyncConfig = SyncConfig;
Inner_Resolver.LambdaConflictHandlerConfig = LambdaConflictHandlerConfig;
Inner_Resolver.PipelineConfig = PipelineConfig;
Inner_Resolver.CachingConfig = CachingConfig;
return Inner_Resolver;
}(resource_1.ResourceBase));
exports.default = Inner_Resolver;