@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
161 lines (160 loc) • 5.51 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 ProjectFileSystemLocation = /** @class */ (function () {
function ProjectFileSystemLocation(properties) {
Object.assign(this, properties);
}
return ProjectFileSystemLocation;
}());
exports.ProjectFileSystemLocation = ProjectFileSystemLocation;
var GitSubmodulesConfig = /** @class */ (function () {
function GitSubmodulesConfig(properties) {
Object.assign(this, properties);
}
return GitSubmodulesConfig;
}());
exports.GitSubmodulesConfig = GitSubmodulesConfig;
var ProjectCache = /** @class */ (function () {
function ProjectCache(properties) {
Object.assign(this, properties);
}
return ProjectCache;
}());
exports.ProjectCache = ProjectCache;
var CloudWatchLogsConfig = /** @class */ (function () {
function CloudWatchLogsConfig(properties) {
Object.assign(this, properties);
}
return CloudWatchLogsConfig;
}());
exports.CloudWatchLogsConfig = CloudWatchLogsConfig;
var Artifacts = /** @class */ (function () {
function Artifacts(properties) {
Object.assign(this, properties);
}
return Artifacts;
}());
exports.Artifacts = Artifacts;
var S3LogsConfig = /** @class */ (function () {
function S3LogsConfig(properties) {
Object.assign(this, properties);
}
return S3LogsConfig;
}());
exports.S3LogsConfig = S3LogsConfig;
var LogsConfig = /** @class */ (function () {
function LogsConfig(properties) {
Object.assign(this, properties);
}
return LogsConfig;
}());
exports.LogsConfig = LogsConfig;
var RegistryCredential = /** @class */ (function () {
function RegistryCredential(properties) {
Object.assign(this, properties);
}
return RegistryCredential;
}());
exports.RegistryCredential = RegistryCredential;
var FilterGroup = /** @class */ (function () {
function FilterGroup(properties) {
Object.assign(this, properties);
}
return FilterGroup;
}());
exports.FilterGroup = FilterGroup;
var VpcConfig = /** @class */ (function () {
function VpcConfig(properties) {
Object.assign(this, properties);
}
return VpcConfig;
}());
exports.VpcConfig = VpcConfig;
var Source = /** @class */ (function () {
function Source(properties) {
Object.assign(this, properties);
}
return Source;
}());
exports.Source = Source;
var EnvironmentVariable = /** @class */ (function () {
function EnvironmentVariable(properties) {
Object.assign(this, properties);
}
return EnvironmentVariable;
}());
exports.EnvironmentVariable = EnvironmentVariable;
var WebhookFilter = /** @class */ (function () {
function WebhookFilter(properties) {
Object.assign(this, properties);
}
return WebhookFilter;
}());
exports.WebhookFilter = WebhookFilter;
var Environment = /** @class */ (function () {
function Environment(properties) {
Object.assign(this, properties);
}
return Environment;
}());
exports.Environment = Environment;
var ProjectTriggers = /** @class */ (function () {
function ProjectTriggers(properties) {
Object.assign(this, properties);
}
return ProjectTriggers;
}());
exports.ProjectTriggers = ProjectTriggers;
var SourceAuth = /** @class */ (function () {
function SourceAuth(properties) {
Object.assign(this, properties);
}
return SourceAuth;
}());
exports.SourceAuth = SourceAuth;
var ProjectSourceVersion = /** @class */ (function () {
function ProjectSourceVersion(properties) {
Object.assign(this, properties);
}
return ProjectSourceVersion;
}());
exports.ProjectSourceVersion = ProjectSourceVersion;
var Inner_Project = /** @class */ (function (_super) {
__extends(Inner_Project, _super);
function Inner_Project(properties) {
return _super.call(this, "AWS::CodeBuild::Project", properties) || this;
}
Inner_Project.ProjectFileSystemLocation = ProjectFileSystemLocation;
Inner_Project.GitSubmodulesConfig = GitSubmodulesConfig;
Inner_Project.ProjectCache = ProjectCache;
Inner_Project.CloudWatchLogsConfig = CloudWatchLogsConfig;
Inner_Project.Artifacts = Artifacts;
Inner_Project.S3LogsConfig = S3LogsConfig;
Inner_Project.LogsConfig = LogsConfig;
Inner_Project.RegistryCredential = RegistryCredential;
Inner_Project.FilterGroup = FilterGroup;
Inner_Project.VpcConfig = VpcConfig;
Inner_Project.Source = Source;
Inner_Project.EnvironmentVariable = EnvironmentVariable;
Inner_Project.WebhookFilter = WebhookFilter;
Inner_Project.Environment = Environment;
Inner_Project.ProjectTriggers = ProjectTriggers;
Inner_Project.SourceAuth = SourceAuth;
Inner_Project.ProjectSourceVersion = ProjectSourceVersion;
return Inner_Project;
}(resource_1.ResourceBase));
exports.default = Inner_Project;