interface ScaleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnTaskSetPropsMixin.ScaleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnTaskSetPropsMixin_ScaleProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnTaskSetPropsMixin.ScaleProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnTaskSetPropsMixin.ScaleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnTaskSetPropsMixin » ScaleProperty |
A floating-point percentage of the desired number of tasks to place and keep running in the task set.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskset-scale.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const scaleProperty: ecs_mixins.CfnTaskSetPropsMixin.ScaleProperty = {
unit: 'unit',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| unit? | string | The unit of measure for the scale value. |
| value? | number | The 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.

.NET
Go
Java
Python
TypeScript