interface ThresholdConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnService.ThresholdConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnService_ThresholdConfigurationProperty |
Java | software.amazon.awscdk.services.ecs.CfnService.ThresholdConfigurationProperty |
Python | aws_cdk.aws_ecs.CfnService.ThresholdConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnService » ThresholdConfigurationProperty |
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 thresholdConfigurationProperty: ecs.CfnService.ThresholdConfigurationProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | |
| value | number |
type
Type:
string
value
Type:
number

.NET
Go
Java
Python
TypeScript