aws-cdk-lib.aws_ecs.CfnTaskSet.ScaleProperty

interface ScaleProperty

LanguageType name
.NETAmazon.CDK.AWS.ECS.CfnTaskSet.ScaleProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnTaskSet_ScaleProperty
Javasoftware.amazon.awscdk.services.ecs.CfnTaskSet.ScaleProperty
Pythonaws_cdk.aws_ecs.CfnTaskSet.ScaleProperty
TypeScript aws-cdk-lib » aws_ecs » CfnTaskSet » ScaleProperty

A floating-point percentage of the desired number of tasks to place and keep running in the task set.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const scaleProperty: ecs.CfnTaskSet.ScaleProperty = {
  unit: 'unit',
  value: 123,
};

Properties

NameTypeDescription
unit?stringThe unit of measure for the scale value.
value?numberThe value, specified as a percent total of a service's desiredCount , to scale the task set.

unit?

Type: string (optional)

The unit of measure for the scale value.


value?

Type: number (optional)

The value, specified as a percent total of a service's desiredCount , to scale the task set.

Accepted values are numbers between 0 and 100.