typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
16 lines (15 loc) • 677 B
JavaScript
;
// CloudFormation Resource AWS::CodeStarConnections::Connection
Object.defineProperty(exports, "__esModule", { value: true });
exports.Connection_Type = void 0;
const base_1 = require("../../base");
exports.Connection_Type = 'AWS::CodeStarConnections::Connection';
/**
* Schema for AWS::CodeStarConnections::Connection resource which can be
* used to connect external source providers with AWS CodePipeline {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codestarconnections-connection.html}
*/
function Connection(props) {
return new base_1.CfnResource(exports.Connection_Type, props);
}
exports.default = Connection;