UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

15 lines (14 loc) 519 B
"use strict"; // CloudFormation Resource AWS::ECS::Cluster Object.defineProperty(exports, "__esModule", { value: true }); exports.Cluster_Type = void 0; const base_1 = require("../../base"); exports.Cluster_Type = 'AWS::ECS::Cluster'; /** * Create an Elastic Container Service (ECS) cluster. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-cluster.html} */ function Cluster(props) { return new base_1.CfnResource(exports.Cluster_Type, props); } exports.default = Cluster;