UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

19 lines (18 loc) 774 B
"use strict"; // CloudFormation Resource AWS::ECS::TaskSet Object.defineProperty(exports, "__esModule", { value: true }); exports.TaskSet_Type = void 0; const base_1 = require("../../base"); exports.TaskSet_Type = 'AWS::ECS::TaskSet'; /** * Create a task set in the specified cluster and service. This is used * when a service uses the EXTERNAL deployment controller type. For more * information, see * https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.htmlin * the Amazon Elastic Container Service Developer Guide. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-taskset.html} */ function TaskSet(props) { return new base_1.CfnResource(exports.TaskSet_Type, props); } exports.default = TaskSet;